123456789101112131415161718192021222324 |
- {% extends "index.twig" %}
- {% block content %}
- <article class="fullpage">
- {% if meta.title %}<h2>{{ meta.title }}</h2>{% endif %}
- <aside class="clearfix">
- {% if meta.date is not empty %}
- <span class="date">{{ meta.date_formatted }}</span>
- {% endif %}
- {% if meta.author is not empty %}
- <span class="author">by {{ page.meta.author }}</span>
- {% endif %}
- {% if meta.tags is not empty %}
- {% for tag in meta.tags|split(',') %}
- <a class="tag" href="/tags?q={{ tag }}">#{{ tag }}</a>
- {% endfor %}
- {% endif %}
- </aside>
- <div>
- {{ tableofcontent }}
- {{ content }}
- </div>
- </article>
- {% endblock %}
|