aboutsummaryrefslogtreecommitdiff
path: root/theme/templates
diff options
context:
space:
mode:
authorChristian Cleberg <hello@cleberg.net>2025-10-14 23:20:22 -0500
committerChristian Cleberg <hello@cleberg.net>2025-10-14 23:20:22 -0500
commit8a569f85348033146bc018bd80ac343ef7ab39e8 (patch)
tree68f79e9a96c557182ee9c37454dd9707c233e17d /theme/templates
parentc51633e2ede460f15aa260d94ddd1330a18a7011 (diff)
downloadcleberg.net-8a569f85348033146bc018bd80ac343ef7ab39e8.tar.gz
cleberg.net-8a569f85348033146bc018bd80ac343ef7ab39e8.tar.bz2
cleberg.net-8a569f85348033146bc018bd80ac343ef7ab39e8.zip
update themeHEADmain
Diffstat (limited to 'theme/templates')
-rw-r--r--theme/templates/base.html14
-rw-r--r--theme/templates/blog.html5
-rw-r--r--theme/templates/index.html3
-rw-r--r--theme/templates/post.html2
4 files changed, 12 insertions, 12 deletions
diff --git a/theme/templates/base.html b/theme/templates/base.html
index 4c06aea..cafe476 100644
--- a/theme/templates/base.html
+++ b/theme/templates/base.html
@@ -19,18 +19,18 @@
<body>
<nav aria-label="site-nav" role="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>{% block main %}{% endblock %}</main>
<footer>
- <a href="https://stats.uptimerobot.com/OwOWs7HU0z">Status</a> &middot;
+ <a href="https://stats.uptimerobot.com/OwOWs7HU0z">status</a> &middot;
<a href="https://git.cleberg.net/cleberg.net.git" target="_blank"
- rel="noopener">Source</a> &middot;
- <a href="/feed.xml">RSS</a>
+ rel="noopener">source</a> &middot;
+ <a href="/feed.xml">rss</a>
</footer>
</body>
</html>
diff --git a/theme/templates/blog.html b/theme/templates/blog.html
index b42959d..5aa3293 100644
--- a/theme/templates/blog.html
+++ b/theme/templates/blog.html
@@ -10,11 +10,10 @@ main %}
</p>
<br>
{% for post in posts %}
-<div>
+<div class="post">
<time datetime='{{ post.date | strftime("%Y-%m-%d") }}'
- >{{ post.date|strftime("%B %d, %Y") }}</time
+ >{{ post.date|strftime("%Y-%m-%d") }}</time
>
<a href='{{ url_for("blog", slug=post.slug) }}'>{{ post.title }}</a>
</div>
-<br>
{% endfor %} {% endblock %}
diff --git a/theme/templates/index.html b/theme/templates/index.html
index c540e09..71d98e5 100644
--- a/theme/templates/index.html
+++ b/theme/templates/index.html
@@ -1,6 +1,6 @@
{% extends "base.html" %} {% block main %}
<section>
- <h1><i>Hi, I'm Christian.</i></h1>
+ <h1><i>christian cleberg</i></h1>
<blockquote>
<b>shouganai</b>
<br>[sho-ga-n-eye] | しょうがない
@@ -12,5 +12,6 @@
<h2>Recent Posts</h2>
<!-- BEGIN_POSTS -->
<!-- END_POSTS -->
+ <p><a href="/blog/">All Posts &rarr;</a></p>
</section>
{% endblock %}
diff --git a/theme/templates/post.html b/theme/templates/post.html
index 9300fb5..aa74ece 100644
--- a/theme/templates/post.html
+++ b/theme/templates/post.html
@@ -12,7 +12,7 @@
<h1>{{ post.title }}</h1>
{% if post.date is defined %}
<time datetime='{{ post.date|strftime("%Y-%m-%d") }}'
- >{{ post.date|strftime("%A, %B %d, %Y %H:%M:%S") }}</time
+ >{{ post.date|strftime("%Y-%m-%d %H:%M:%S") }}</time
>
{% endif %}
</section>