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,30 @@
{% extends 'default.html.twig' %}
{% block content %}
<div class="feed">
{% set entries = page.children().order('date', 'desc').published() %}
{% if entries|length > 0 %}
{% for entry in entries %}
<article class="entry-card">
<time class="entry-date" datetime="{{ entry.date|date('Y-m-d') }}">
{{ entry.date|date('d M Y') }}
</time>
<h2 class="entry-title">
<a href="{{ entry.url }}">{{ entry.title }}</a>
</h2>
{% if entry.header.hero_image %}
<div class="entry-thumb">
<img src="{{ entry.url }}/{{ entry.header.hero_image }}" alt="{{ entry.title }}">
</div>
{% endif %}
<div class="entry-excerpt">
{{ entry.summary }}
</div>
<a class="entry-read-more" href="{{ entry.url }}">Read more →</a>
</article>
{% endfor %}
{% else %}
<p class="feed-empty">No entries yet. The journey is about to begin.</p>
{% endif %}
</div>
{% endblock %}