aboutsummaryrefslogtreecommitdiff
path: root/theme/templates
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2025-11-22 16:49:30 -0600
committerChristian Cleberg <[email protected]>2025-11-22 16:49:30 -0600
commit54d9fe35c7eab5caa7634b391d07eba76804fdc5 (patch)
tree8a9567a19abd84e947e46bbf0f2f8f8554807d1c /theme/templates
parent698b2656eee2c13f3b50af62020ee1e33321fe68 (diff)
downloadcleberg.net-54d9fe35c7eab5caa7634b391d07eba76804fdc5.tar.gz
cleberg.net-54d9fe35c7eab5caa7634b391d07eba76804fdc5.tar.bz2
cleberg.net-54d9fe35c7eab5caa7634b391d07eba76804fdc5.zip
minor redesign
Diffstat (limited to 'theme/templates')
-rw-r--r--theme/templates/base.html14
-rw-r--r--theme/templates/index.html18
-rw-r--r--theme/templates/post.html11
3 files changed, 18 insertions, 25 deletions
diff --git a/theme/templates/base.html b/theme/templates/base.html
index f6c5c86..c9aa556 100644
--- a/theme/templates/base.html
+++ b/theme/templates/base.html
@@ -22,17 +22,17 @@
</div>
<nav aria-label="Site Navigation">
<ul>
- <li><a href="/">/home</a></li>
- <li><a href="/about/">/about</a></li>
- <li><a href="/blog/">/blog</a></li>
- <li><a href="/services/">/services</a></li>
+ <li><a href="/">Home</a></li>
+ <li><a href="/about/">About</a></li>
+ <li><a href="/blog/">Blog</a></li>
+ <li><a href="/services/">Services</a></li>
</ul>
</nav>
<main id="main">{% block main %}{% endblock %}</main>
<footer>
- <a href="https://stats.uptimerobot.com/OwOWs7HU0z">status</a> &middot;
- <a href="https://git.cleberg.net/cleberg.net.git">source</a> &middot;
- <a href="/feed.xml">rss</a>
+ <a href="https://stats.uptimerobot.com/OwOWs7HU0z">Status</a> &middot;
+ <a href="https://git.cleberg.net/cleberg.net.git">Source</a> &middot;
+ <a href="/feed.xml">RSS</a>
</footer>
</body>
</html>
diff --git a/theme/templates/index.html b/theme/templates/index.html
index 4703abd..106b175 100644
--- a/theme/templates/index.html
+++ b/theme/templates/index.html
@@ -1,17 +1,13 @@
{% extends "base.html" %} {% block main %}
-<section>
- <h1>christian cleberg</h1>
- <blockquote>
- <b>shouganai</b>
- <br>[sho-ga-n-eye] | しょうがない
- <br><br>
- <i>it is what it is</i>
- </blockquote>
+<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>
-<section>
+<section class="recent-posts">
<h2>Recent Posts</h2>
<!-- BEGIN_POSTS -->
<!-- END_POSTS -->
- <p><a href="/blog/">all posts &rarr;</a></p>
+ <p><a href="/blog/">All Posts &rarr;</a></p>
</section>
-{% endblock %}
+{% endblock %} \ No newline at end of file
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 &rarr;</a></div>