Add intotheeast theme: blueprints, 4 templates, CSS

This commit is contained in:
2026-06-17 23:49:07 +02:00
parent 4d68f528e5
commit 9f4aea9671
7 changed files with 176 additions and 0 deletions
@@ -0,0 +1,18 @@
{% 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 %}