diff options
| author | Christian Cleberg <[email protected]> | 2026-01-17 17:53:07 -0600 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2026-01-17 17:53:07 -0600 |
| commit | 6a2d437c056d7e5e5b0fb8cd73fc10bf7b37b73c (patch) | |
| tree | d135552230b1f90526d6a609fe21cc70d8958796 /theme/templates | |
| parent | be215575b825ab118601cbabdcd9b64a7a2d1759 (diff) | |
| download | cleberg.net-6a2d437c056d7e5e5b0fb8cd73fc10bf7b37b73c.tar.gz cleberg.net-6a2d437c056d7e5e5b0fb8cd73fc10bf7b37b73c.tar.bz2 cleberg.net-6a2d437c056d7e5e5b0fb8cd73fc10bf7b37b73c.zip | |
revert site theme
Diffstat (limited to 'theme/templates')
| -rw-r--r-- | theme/templates/post.html | 21 |
1 files changed, 4 insertions, 17 deletions
diff --git a/theme/templates/post.html b/theme/templates/post.html index 407b3b0..66c335c 100644 --- a/theme/templates/post.html +++ b/theme/templates/post.html @@ -8,23 +8,10 @@ <meta property="og:description" content="{{ project_description }}" /> {% endif %} {% endblock %} {% block main %} <article> - <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> + <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> <section>{{ post.html | safe }}</section> <div class="reply-link"><a href="mailto:[email protected]">Reply via email →</a></div> |
