pyro/templates/article.html
Freyja Wildes 61952116b6 Restarted the project from zero
This theme was started years ago when I was first attempting to build a
blog and personal website using Pelican. In February 2025, I retrieved
it from an server I had. It was then in a very early stage. I reworked
it completely with more modern CSS/HTML (things had changed a *lot*).

This theme aims to be simple, accessible, readable. My own needs and
preferences influence the choicies I make.
2025-02-16 14:11:49 +01:00

32 lines
1,017 B
HTML

{% extends 'base.html' %}
{% block page_title %}{{article.title|striptags }}{% endblock page_title %}
{% block content %}
<main>
<article>
<div class="title-block">
<h1 class="article">
{{ article.title }}
</h1>
<div class="subtitle">
{% if article.tags %}
{% for tag in article.tags %}
<a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a>
{% if loop.nextitem %}
<span>-</span>
{% endif %}
{% endfor %}
{% endif %}
</div>
</div>
<ul class="meta">
<li ><em>Publié le :</em> {{ article.locale_date }}</li>
{% if article.modified %}
<li><em>Modifié le :</em> {{ article.locale_modified }}</li>
{% endif %}
<li><em>Autaire :</em> {{ article.author }}</li>
</ul>
{{ article.content }}
</article>
</main>
{% endblock %}