post.twig 1.0 KB

1234567891011121314151617181920212223242526272829303132
  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 }}
  8. {% if meta.timeline is not empty %}
  9. <span class="timeline">
  10. {% for date in meta.timeline|split(',') %}
  11. - {{ date|date("M d Y") }}
  12. {% endfor %}
  13. </span>
  14. {% endif %}
  15. </span>
  16. {% endif %}
  17. {% if meta.author is not empty %}
  18. <span class="author">by <a href="/authors?q={{ meta.author }}">{{ meta.author }}</a></span>
  19. {% endif %}
  20. {% if meta.tags is not empty %}
  21. {% for tag in meta.tags|split(',') %}
  22. <a class="tag" href="/tags?q={{ tag }}">#{{ tag }}</a>
  23. {% endfor %}
  24. {% endif %}
  25. </aside>
  26. <div>
  27. {{ tableofcontent|raw }}
  28. {{ content }}
  29. </div>
  30. </article>
  31. {% endblock %}