aboutsummaryrefslogtreecommitdiff
path: root/theme/templates
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2025-12-02 22:04:33 -0600
committerChristian Cleberg <[email protected]>2025-12-02 22:04:33 -0600
commitb3a6db3127a5a72998764de62c1498508eef5da3 (patch)
tree450f7874a74c5061cc996680c8d748c874256ca9 /theme/templates
parent0b2ff729f519cd27ac5eba69e414ae8e87716094 (diff)
downloadcleberg.net-b3a6db3127a5a72998764de62c1498508eef5da3.tar.gz
cleberg.net-b3a6db3127a5a72998764de62c1498508eef5da3.tar.bz2
cleberg.net-b3a6db3127a5a72998764de62c1498508eef5da3.zip
feat: minify css theme again since the last one was not great
Diffstat (limited to 'theme/templates')
-rw-r--r--theme/templates/index.html10
-rw-r--r--theme/templates/post.html8
2 files changed, 9 insertions, 9 deletions
diff --git a/theme/templates/index.html b/theme/templates/index.html
index 106b175..1ce080c 100644
--- a/theme/templates/index.html
+++ b/theme/templates/index.html
@@ -1,8 +1,8 @@
{% extends "base.html" %} {% block main %}
-<section class="context-box">
- <span class="context-label">User:</span> <span>Christian Cleberg &lt;[email protected]&gt;</span>
- <span class="context-label">Context:</span> <span>Technology Assurance Manager</span>
- <span class="context-label">Status:</span> <span>Active</span>
+<section>
+ <b>User</b>: Christian Cleberg &lt;[email protected]&gt;
+ <br><b>Context</b>: Technology Assurance Manager
+ <br><b>Status</b>: Active
</section>
<section class="recent-posts">
<h2>Recent Posts</h2>
@@ -10,4 +10,4 @@
<!-- END_POSTS -->
<p><a href="/blog/">All Posts &rarr;</a></p>
</section>
-{% endblock %} \ No newline at end of file
+{% endblock %}
diff --git a/theme/templates/post.html b/theme/templates/post.html
index a2c903e..66c335c 100644
--- a/theme/templates/post.html
+++ b/theme/templates/post.html
@@ -8,10 +8,10 @@
<meta property="og:description" content="{{ project_description }}" />
{% endif %} {% endblock %} {% block main %}
<article>
- <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>
+ <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 &rarr;</a></div>