diff options
| author | Christian Cleberg <[email protected]> | 2026-02-07 19:50:17 -0600 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2026-02-07 19:50:17 -0600 |
| commit | cc9fded3414e0bdc59feeed3c5508967e60c06bb (patch) | |
| tree | 72facf0ff9eb2c7e295d40106893bee449902ea0 /theme/templates/post.html | |
| parent | 21b9352971393718b5f961922b1e672dcc30fa83 (diff) | |
| download | cleberg.net-cc9fded3414e0bdc59feeed3c5508967e60c06bb.tar.gz cleberg.net-cc9fded3414e0bdc59feeed3c5508967e60c06bb.tar.bz2 cleberg.net-cc9fded3414e0bdc59feeed3c5508967e60c06bb.zip | |
fix metadata styling
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 0dc35e7..780a959 100644 --- a/theme/templates/post.html +++ b/theme/templates/post.html @@ -8,11 +8,11 @@ <meta property="og:description" content="{{ project_description }}" /> {% endif %} {% endblock %} {% block main %} <article> - <section class="post-metadata"> - <b>Object</b> <span>{{ post.title }}</span> - <b>Timestamp</b> <span><time datetime='{{ post.date|strftime("%Y-%m-%d") }}'>{{ post.date|strftime("%Y-%m-%d %H:%M:%S") }}</time></span> - <b>Summary</b> <span>{{ post.description }}</span> - </section> + <section class="metadata"> + <b>Object</b> <span>{{ post.title }}</span> + <b>Timestamp</b> <span><time datetime='{{ post.date|strftime("%Y-%m-%d") }}'>{{ post.date|strftime("%Y-%m-%d %H:%M:%S") }}</time></span> + <b>Summary</b> <span>{{ post.description }}</span> + </section> <section>{{ post.html | safe }}</section> <div class="reply-link"><a href="mailto:[email protected]">Reply via email →</a></div> </article> |
