Files
intotheeast-com-content/themes/intotheeast/templates/entry.html.twig
T

19 lines
532 B
Twig

{% extends 'default.html.twig' %}
{% block content %}
<article class="entry">
<header class="entry-header">
<time class="entry-date" datetime="{{ page.date|date('Y-m-d') }}">
{{ page.date|date('l, d F Y') }}
</time>
<h1 class="entry-title">{{ page.title }}</h1>
</header>
<div class="entry-body">
{{ page.content }}
</div>
<footer class="entry-footer">
<a href="{{ base_url_absolute }}/tracker">← Back to journal</a>
</footer>
</article>
{% endblock %}