diff options
author | Christian Cleberg <hello@cleberg.net> | 2025-09-04 16:49:49 -0500 |
---|---|---|
committer | Christian Cleberg <hello@cleberg.net> | 2025-09-04 16:49:49 -0500 |
commit | 96964fe6f8a2e4de7fcf85a859e3ec890dd5dca7 (patch) | |
tree | 79502d636c2e363bec7fe6fd36934de646d09f69 /theme/templates | |
parent | 8d53754c22fb4db81948d0147511723a87a1c8b7 (diff) | |
download | cleberg.net-96964fe6f8a2e4de7fcf85a859e3ec890dd5dca7.tar.gz cleberg.net-96964fe6f8a2e4de7fcf85a859e3ec890dd5dca7.tar.bz2 cleberg.net-96964fe6f8a2e4de7fcf85a859e3ec890dd5dca7.zip |
shift from monospace theme to a formalized serif theme
Diffstat (limited to 'theme/templates')
-rw-r--r-- | theme/templates/blog.html | 6 | ||||
-rw-r--r-- | theme/templates/index.html | 12 | ||||
-rw-r--r-- | theme/templates/post.html | 2 | ||||
-rw-r--r-- | theme/templates/wiki.html | 4 |
4 files changed, 13 insertions, 11 deletions
diff --git a/theme/templates/blog.html b/theme/templates/blog.html index fc4f6d6..7e15d86 100644 --- a/theme/templates/blog.html +++ b/theme/templates/blog.html @@ -11,9 +11,6 @@ main %} <br> {% for post in posts %} <div class="post"> - <time datetime='{{ post.date | strftime("%Y-%m-%d") }}' - >{{ post.date|strftime("%Y-%m-%d") }}</time - > <div class="post-content"> <a href='{{ url_for("blog", slug=post.slug) }}'>{{ post.title }}</a> {% if post.filetags %} @@ -24,5 +21,8 @@ main %} </div> {% endif %} </div> + <time datetime='{{ post.date | strftime("%Y-%m-%d") }}' + >{{ post.date|strftime("%B %d, %Y") }}</time + > </div> {% endfor %} {% endblock %} diff --git a/theme/templates/index.html b/theme/templates/index.html index 864d866..0ad4d5a 100644 --- a/theme/templates/index.html +++ b/theme/templates/index.html @@ -1,10 +1,12 @@ {% extends "base.html" %} {% block main %} <section> - <h1><i>~cmc</i></h1> - <pre>pub rsa4096 2022-11-16 [SC] - <a href="/gpg.txt">3917 973F B159 BBB8 6194 5385 6945 1A51 7AC0 CB37</a> -uid [ultimate] Christian Cleberg <hello@cleberg.net> -sub rsa4096 2022-11-16 [E]</pre> + <h1><i>Hi, I'm Christian.</i></h1> + <blockquote> + <b>shouganai</b> + <br>[sho-ga-n-eye] | しょうがない + <br><br> + <i>it is what it is</i> + </blockquote> </section> <section> <h2>Blog Posts</h2> diff --git a/theme/templates/post.html b/theme/templates/post.html index b7f059d..8387156 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("%Y-%m-%d %a %H:%M:%S") }}></time + >{{ post.date|strftime("%A, %B %d, %Y %H:%M:%S") }}</time > {% endif %} {% if post.filetags %} <p class="post-tags"> diff --git a/theme/templates/wiki.html b/theme/templates/wiki.html index 6087b36..3bfc10e 100644 --- a/theme/templates/wiki.html +++ b/theme/templates/wiki.html @@ -4,9 +4,9 @@ main %} <p>Use <code>Ctrl + F</code> to search wiki pages for keywords.</p> {% for post in posts %} <div class="post"> + <a href='{{ url_for("wiki", slug=post.slug) }}'>{{ post.title }}</a> <time datetime='{{ post.date | strftime("%Y-%m-%d") }}' - >{{ post.date|strftime("%Y-%m-%d") }}</time + >{{ post.date|strftime("%B %d, %Y") }}</time > - <a href='{{ url_for("wiki", slug=post.slug) }}'>{{ post.title }}</a> </div> {% endfor %} {% endblock %} |