aboutsummaryrefslogtreecommitdiff
path: root/theme/templates
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2026-02-07 19:50:17 -0600
committerChristian Cleberg <[email protected]>2026-02-07 19:50:17 -0600
commitcc9fded3414e0bdc59feeed3c5508967e60c06bb (patch)
tree72facf0ff9eb2c7e295d40106893bee449902ea0 /theme/templates
parent21b9352971393718b5f961922b1e672dcc30fa83 (diff)
downloadcleberg.net-cc9fded3414e0bdc59feeed3c5508967e60c06bb.tar.gz
cleberg.net-cc9fded3414e0bdc59feeed3c5508967e60c06bb.tar.bz2
cleberg.net-cc9fded3414e0bdc59feeed3c5508967e60c06bb.zip
fix metadata styling
Diffstat (limited to 'theme/templates')
-rw-r--r--theme/templates/index.html2
-rw-r--r--theme/templates/post.html10
2 files changed, 6 insertions, 6 deletions
diff --git a/theme/templates/index.html b/theme/templates/index.html
index 48176e3..4491f14 100644
--- a/theme/templates/index.html
+++ b/theme/templates/index.html
@@ -1,5 +1,5 @@
{% extends "base.html" %} {% block main %}
-<section>
+<section class="metadata">
<b>User</b> <span>Christian Cleberg &lt;[email protected]&gt;</span>
<b>Context</b> <span>Technology Assurance Manager</span>
<b>Status</b>Active</span>
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 &rarr;</a></div>
</article>