diff options
| author | Christian Cleberg <[email protected]> | 2025-11-22 16:49:30 -0600 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2025-11-22 16:49:30 -0600 |
| commit | 54d9fe35c7eab5caa7634b391d07eba76804fdc5 (patch) | |
| tree | 8a9567a19abd84e947e46bbf0f2f8f8554807d1c /theme/templates/post.html | |
| parent | 698b2656eee2c13f3b50af62020ee1e33321fe68 (diff) | |
| download | cleberg.net-54d9fe35c7eab5caa7634b391d07eba76804fdc5.tar.gz cleberg.net-54d9fe35c7eab5caa7634b391d07eba76804fdc5.tar.bz2 cleberg.net-54d9fe35c7eab5caa7634b391d07eba76804fdc5.zip | |
minor redesign
Diffstat (limited to 'theme/templates/post.html')
| -rw-r--r-- | theme/templates/post.html | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/theme/templates/post.html b/theme/templates/post.html index 577f2dd..a2c903e 100644 --- a/theme/templates/post.html +++ b/theme/templates/post.html @@ -8,13 +8,10 @@ <meta property="og:description" content="{{ project_description }}" /> {% endif %} {% endblock %} {% block main %} <article> - <section class="post-metadata"> - <h1>{{ post.title }}</h1> - {% if post.date is defined %} - <time datetime='{{ post.date|strftime("%Y-%m-%d") }}' - >{{ post.date|strftime("%Y-%m-%d %H:%M:%S") }}</time - > - {% endif %} + <section class="context-box"> + <span class="context-label">Title:</span> <span>{{ post.title }}</span> + <span class="context-label">Date:</span> <span><time datetime='{{ post.date|strftime("%Y-%m-%d") }}'>{{ post.date|strftime("%Y-%m-%d %H:%M:%S") }}</time></span> + <span class="context-label">Description:</span> <span>{{ post.description }}</span> </section> <section>{{ post.html | safe }}</section> <div class="reply-link"><a href="mailto:[email protected]">Reply via email →</a></div> |
