diff options
| author | Christian Cleberg <[email protected]> | 2026-03-13 15:56:35 -0500 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2026-03-13 15:56:35 -0500 |
| commit | 11a5ca2792cd0debb6b8f510ffd716e6f734dbd6 (patch) | |
| tree | 945f53748136471c1eb23ddd98d567619fb1c788 /theme/templates/post.html | |
| parent | c7314b1052152748585c0ea5dc07325a26c2374e (diff) | |
| download | cleberg.net-11a5ca2792cd0debb6b8f510ffd716e6f734dbd6.tar.gz cleberg.net-11a5ca2792cd0debb6b8f510ffd716e6f734dbd6.tar.bz2 cleberg.net-11a5ca2792cd0debb6b8f510ffd716e6f734dbd6.zip | |
fix *.org headers and revert to minimal site theme
Diffstat (limited to 'theme/templates/post.html')
| -rw-r--r-- | theme/templates/post.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/theme/templates/post.html b/theme/templates/post.html index 018068e..df6c3b7 100644 --- a/theme/templates/post.html +++ b/theme/templates/post.html @@ -10,12 +10,12 @@ {% endblock %} {% block main %} <article> - <p class="article-dateline"><time datetime='{{ post.date|strftime("%Y-%m-%d") }}'>{{ post.date|strftime("%Y-%m-%d") }}</time></p> - <h1 class="article-title">{{ post.title }}</h1> + <p><time datetime='{{ post.date|strftime("%Y-%m-%d") }}'>{{ post.date|strftime("%Y-%m-%d") }}</time></p> + <h1>{{ post.title }}</h1> {% if post.description is defined %} - <p class="article-standfirst">{{ post.description }}</p> + <p>{{ post.description }}</p> {% endif %} - <div class="article-body">{{ post.html | safe }}</div> - <div class="reply-link"><a href="mailto:[email protected]">Reply via email →</a></div> + <div>{{ post.html | safe }}</div> + <div><a href="mailto:[email protected]">Reply via email →</a></div> </article> {% endblock %} |
