1
0
Fork 0
forked from github/pelican

Fix #3233 -- Simple theme classless semantic HTML

This commit is contained in:
Paolo Melchiorre 2023-11-11 14:10:08 +01:00
commit 6059675d55
No known key found for this signature in database
GPG key ID: 5F8222398E1ED035
27 changed files with 163 additions and 119 deletions

View file

@ -22,44 +22,44 @@
{% endblock %}
{% block content %}
<article>
<header>
<h1 class="entry-title">
<h2>
<a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark"
title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></h1>
title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></h2>
{% import 'translations.html' as translations with context %}
{{ translations.translations_for(article) }}
</header>
<footer class="post-info">
<time class="published" datetime="{{ article.date.isoformat() }}">
{{ article.content }}
<footer>
<p>Published: <time datetime="{{ article.date.isoformat() }}">
{{ article.locale_date }}
</time>
</time></p>
{% if article.modified %}
<time class="modified" datetime="{{ article.modified.isoformat() }}">
<p>Last updated: <time datetime="{{ article.modified.isoformat() }}">
{{ article.locale_modified }}
</time>
</time></p>
{% endif %}
{% if article.authors %}
<address class="vcard author">
<address>
By {% for author in article.authors %}
<a class="url fn" href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a>
<a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a>
{% endfor %}
</address>
{% endif %}
{% if article.category %}
<div class="category">
<p>
Category: <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>
</div>
</p>
{% endif %}
{% if article.tags %}
<div class="tags">
<p>
Tags:
{% for tag in article.tags %}
<a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a>
{% endfor %}
</div>
</p>
{% endif %}
</footer><!-- /.post-info -->
<article>
{{ article.content }}
</footer>
</article>
{% endblock %}