alexdaniels.me/templates/front/category/detail.html.twig

37 lines
1.5 KiB
Twig
Raw Normal View History

2026-06-03 17:18:50 -07:00
{% extends 'base.html.twig' %}
2026-06-08 14:12:08 -07:00
{% block title %}{{title}} - Categories | Alex Daniels{% endblock %}
{% block metatitle %}{{title}} - Categories | Alex Daniels {% endblock %}
{% block ogtitle %}{{title}} - Categories | Alex Daniels {% endblock %}
{% block twittertitle %}Writing and Albums that contain the category '{{title}}'{% endblock %}
{% block metadescription %}Writing and Albums that contain the category '{{title}}'{% endblock %}
{% block ogdescription %}Writing and Albums that contain the category '{{title}}'{% endblock %}
{% block twitterdescription %}Writing and Albums that contain the category '{{title}}'{% endblock %}
2026-06-03 17:18:50 -07:00
{% block body %}
<section class="category">
2026-06-08 14:12:08 -07:00
<h2>{{title}}</h2>
2026-06-03 17:18:50 -07:00
{% if posts|length %}
<div class="posts">
2026-06-08 14:12:08 -07:00
<h3>Posts</h3>
2026-06-03 17:18:50 -07:00
<ul>
{% for post in posts %}
2026-06-08 14:12:08 -07:00
<li><a href="/words/{{post.url}}">{{post.title}} - {{ post.date|date('l M d Y') }}</a></li>
2026-06-03 17:18:50 -07:00
{% endfor %}
</ul>
</div>
{% endif %}
{% if photos|length %}
<div class="photos">
2026-06-08 14:12:08 -07:00
<h3>Photos</h3>
2026-06-03 17:18:50 -07:00
<ul>
{% for photo in photos %}
2026-06-08 14:12:08 -07:00
<li><a href="/photos/{{photo.url}}">{{photo.title}} - {{ photo.date|date('l M d Y') }}</a></li>
2026-06-03 17:18:50 -07:00
{% endfor %}
</ul>
</div>
{% endif %}
</section>
{% endblock %}