KXStudio Website https://kx.studio/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

text.twig 558B

9 years ago
12345678910111213
  1. {% extends "content/post.twig" %}
  2. {% block content %}
  3. {% if post['title'] %}
  4. <p>
  5. <span style="font-size: 20px">&gt;
  6. <a href="$post.url" rel="bookmark" title="${ "Permanent Link to" | translate } &quot;$post.title&quot;">$post.title</a>
  7. </span><br/>
  8. On <i>${ post.created_at | strftime("%Y-%m-%d") }</i> by<i> falkTX</i>
  9. </p>
  10. {% endif %}
  11. ${ post.body | read_more }
  12. {% endblock %}