post.twig 732 B

123456789101112131415161718192021222324
  1. {% extends "index.twig" %}
  2. {% block content %}
  3. <article class="fullpage">
  4. {% if meta.title %}<h2>{{ meta.title }}</h2>{% endif %}
  5. <aside class="clearfix">
  6. {% if meta.date is not empty %}
  7. <span class="date">{{ meta.date_formatted }}</span>
  8. {% endif %}
  9. {% if meta.author is not empty %}
  10. <span class="author">by {{ page.meta.author }}</span>
  11. {% endif %}
  12. {% if meta.tags is not empty %}
  13. {% for tag in meta.tags|split(',') %}
  14. <a class="tag" href="/tags?q={{ tag }}">#{{ tag }}</a>
  15. {% endfor %}
  16. {% endif %}
  17. </aside>
  18. <div>
  19. {{ tableofcontent }}
  20. {{ content }}
  21. </div>
  22. </article>
  23. {% endblock %}