diff options
Diffstat (limited to 'theme/templates')
-rw-r--r-- | theme/templates/base.html | 2 | ||||
-rw-r--r-- | theme/templates/feed.xml | 6 | ||||
-rw-r--r-- | theme/templates/index.html | 19 | ||||
-rw-r--r-- | theme/templates/post.html | 2 |
4 files changed, 13 insertions, 16 deletions
diff --git a/theme/templates/base.html b/theme/templates/base.html index bd0f011..b75c2bc 100644 --- a/theme/templates/base.html +++ b/theme/templates/base.html @@ -33,7 +33,7 @@ </p> <p>Last build: <{{ now() | strftime("%Y-%m-%d %a %H:%M:%S") }}></p> <p> - <a href="https://git.sr.ht/~cyborg/cleberg.net" target="_blank" + <a href="https://git.sr.ht/~cyborg/cmc.pub" target="_blank" rel="noopener">Source Code</a> · <a href="/feed.xml">RSS Feed</a> · <a href="/.well-known/security.txt">security.txt</a> diff --git a/theme/templates/feed.xml b/theme/templates/feed.xml index 7b23994..78796bd 100644 --- a/theme/templates/feed.xml +++ b/theme/templates/feed.xml @@ -10,7 +10,7 @@ xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"> <channel> - <title>{{ site_name | default("cleberg.net") }}</title> + <title>{{ site_name | default("cmc.pub") }}</title> <atom:link href="{{ url_for("rss") }}" rel="self" type="application/rss+xml" /> @@ -20,13 +20,13 @@ <pubDate>{{ posts | first | getattr("date") | strftime("%a, %d %b %Y %H:%M:%S %z") }}</pubDate> <lastBuildDate>{{ now() | strftime("%a, %d %b %Y %H:%M:%S %z") }}</lastBuildDate> <generator>{{ meta.generator }}</generator> - <webMaster>{{ site_owner | default("hello@cleberg.net") }}</webMaster> + <webMaster>{{ site_owner | default("hello@cmc.pub") }}</webMaster> {% for post in posts %} <item> <title>{{ post.title }}</title> <link>{{ url_for("blog", slug=post.slug) }}</link> - <author>{{ post.author|default("hello@cleberg.net") }}</author> + <author>{{ post.author|default("hello@cmc.pub") }}</author> <guid isPermaLink="false">{{ url_for("blog", slug=post.slug) }}</guid> <pubDate>{{ post.date|strftime("%a, %d %b %Y %H:%M:%S %z") }}</pubDate> <description><![CDATA[{{ post.html|safe }}]]></description> diff --git a/theme/templates/index.html b/theme/templates/index.html index 905bd57..e11eaef 100644 --- a/theme/templates/index.html +++ b/theme/templates/index.html @@ -1,9 +1,10 @@ {% extends "base.html" %} {% block main %} <section> - <h1>cleberg.net</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></pre> + <h1>cmc.pub</h1> + <pre>pub ed25519 2025-03-11 [SCA] + <a href="/gpg.txt">C687 00A6 FA4B 7183 B6CE E47D EEDC 995C D14F 193C</a> +uid [ultimate] Christian Cleberg <hello@cmc.pub> +sub cv25519 2025-03-11 [E]</pre> </section> <section> <h2>Recent Blog Posts</h2> @@ -33,7 +34,7 @@ uid [ultimate] Christian Cleberg <hello@cleberg.net></pre> <section> <h2>Everything Else</h2> <ul> - <li><a href="https://cv.cleberg.net">Curriculum Vitae</a></li> + <li><a href="https://cv.cmc.pub">Curriculum Vitae</a></li> <li><a href="/salary/">Salary</a></li> <li><a href="/services/">Services</a></li> <li><a href="/wiki/">Wiki</a></li> @@ -43,13 +44,9 @@ uid [ultimate] Christian Cleberg <hello@cleberg.net></pre> <section> <h2>Contact</h2> <ul> - <li><a href="mailto:hello@cleberg.net">hello@cleberg.net</a> (<a href="https://cleberg.net/gpg.txt">GPG</a>)</li> + <li><a href="mailto:hello@cmc.pub">hello@cmc.pub</a> (<a href="https://cmc.pub/gpg.txt">GPG</a>)</li> <li>cyb0rg on <a href="https://libera.chat/">libera.chat</a></li> - <li> - <a href="https://matrix.to/#/@cyborg:matrix.tchncs.de" - >@cyborg:@matrix.tchncs.de</a - > - </li> + <li><a href="https://lemmy.cmc.pub/u/cmc">@cmc</a> on Lemmy</li> <li><a href="https://sr.ht/~cyborg">Sourcehut</a></li> </ul> </section> diff --git a/theme/templates/post.html b/theme/templates/post.html index 43f45d2..a3c15a5 100644 --- a/theme/templates/post.html +++ b/theme/templates/post.html @@ -23,6 +23,6 @@ {% endif %} </section> <section>{{ post.html | safe }}</section> - <blockquote><a href="mailto:hello@cleberg.net">Reply via email</a></blockquote> + <blockquote><a href="mailto:hello@cmc.pub">Reply via email</a></blockquote> </article> {% endblock %} |