diff options
| author | Christian Cleberg <[email protected]> | 2026-01-16 22:39:21 -0600 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2026-01-16 22:39:21 -0600 |
| commit | be215575b825ab118601cbabdcd9b64a7a2d1759 (patch) | |
| tree | 07840d58d25fcd13a04e333484c9c6045f4ed76e /theme/templates | |
| parent | 66d8375d855b6d8790cdb83a8400871a4a76d302 (diff) | |
| download | cleberg.net-be215575b825ab118601cbabdcd9b64a7a2d1759.tar.gz cleberg.net-be215575b825ab118601cbabdcd9b64a7a2d1759.tar.bz2 cleberg.net-be215575b825ab118601cbabdcd9b64a7a2d1759.zip | |
update site theme
Diffstat (limited to 'theme/templates')
| -rw-r--r-- | theme/templates/post.html | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/theme/templates/post.html b/theme/templates/post.html index 66c335c..407b3b0 100644 --- a/theme/templates/post.html +++ b/theme/templates/post.html @@ -8,10 +8,23 @@ <meta property="og:description" content="{{ project_description }}" /> {% endif %} {% endblock %} {% block main %} <article> - <section> - <b>Title</b>: {{ post.title }} - <br><b>Date</b>: <time datetime='{{ post.date|strftime("%Y-%m-%d") }}'>{{ post.date|strftime("%Y-%m-%d %H:%M:%S") }}</time> - <br><b>Description</b>: {{ post.description }} + <section class="post-metadata"> + <div class="meta-row"> + <span class="meta-label">Title:</span> + <span class="meta-value">{{ post.title }}</span> + </div> + + <div class="meta-row"> + <span class="meta-label">Date:</span> + <time class="meta-value" datetime='{{ post.date | strftime("%Y-%m-%d") }}''> + {{ post.date | strftime("%Y-%m-%d %H:%M:%S") }} + </time> + </div> + + <div class="meta-row"> + <span class="meta-label">Description:</span> + <span class="meta-value">{{ post.description }}</span> + </div> </section> <section>{{ post.html | safe }}</section> <div class="reply-link"><a href="mailto:[email protected]">Reply via email →</a></div> |
