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 | 16 | ||||
-rw-r--r-- | theme/templates/post.html | 2 |
4 files changed, 13 insertions, 13 deletions
diff --git a/theme/templates/base.html b/theme/templates/base.html index b5f3b89..b77d638 100644 --- a/theme/templates/base.html +++ b/theme/templates/base.html @@ -34,7 +34,7 @@ <p>Last build: <{{ now() | strftime("%Y-%m-%d %a %H:%M:%S") }}></p> <p> <a href="https://stats.uptimerobot.com/OwOWs7HU0z">Status</a> · - <a href="https://github.com/ccleberg/cmc.pub" target="_blank" + <a href="https://github.com/ccleberg/cleberg.net" 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 78796bd..7b23994 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("cmc.pub") }}</title> + <title>{{ site_name | default("cleberg.net") }}</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@cmc.pub") }}</webMaster> + <webMaster>{{ site_owner | default("hello@cleberg.net") }}</webMaster> {% for post in posts %} <item> <title>{{ post.title }}</title> <link>{{ url_for("blog", slug=post.slug) }}</link> - <author>{{ post.author|default("hello@cmc.pub") }}</author> + <author>{{ post.author|default("hello@cleberg.net") }}</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 518c10e..d19ad77 100644 --- a/theme/templates/index.html +++ b/theme/templates/index.html @@ -1,9 +1,9 @@ {% extends "base.html" %} {% block main %} <section> - <h1><i>~cmc.pub</i></h1> + <h1><i>~cleberg.net</i></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> +uid [ultimate] Christian Cleberg <hello@cleberg.net> sub cv25519 2025-03-11 [E]</pre> </section> <section> @@ -32,7 +32,7 @@ sub cv25519 2025-03-11 [E]</pre> <section> <h2>Everything Else</h2> <ul> - <li><a href="https://cv.cmc.pub">Curriculum Vitae</a></li> + <li><a href="https://cv.cleberg.net">Curriculum Vitae</a></li> <li><a href="/now/">Now</a></li> <li><a href="/salary/">Salary</a></li> <li><a href="/services/">Services</a></li> @@ -43,9 +43,9 @@ sub cv25519 2025-03-11 [E]</pre> <section> <h2>Contact</h2> <ul> - <li><a href="mailto:hello@cmc.pub">hello@cmc.pub</a> (<a href="https://cmc.pub/gpg.txt">GPG</a>)</li> + <li><a href="mailto:hello@cleberg.net">hello@cleberg.net</a> (<a href="https://cleberg.net/gpg.txt">GPG</a>)</li> <li>cyb0rg on <a href="https://libera.chat/">libera.chat</a></li> - <li><a href="https://lemmy.cmc.pub/u/cmc">@cmc</a> on Lemmy</li> + <li><a href="https://lemmy.cleberg.net/u/cmc">@cmc</a> on Lemmy</li> <li>@cmc.01 on <a href="https://signal.org/">Signal</a></li> <li><a href="https://github.com/ccleberg">GitHub</a></li> </ul> @@ -55,9 +55,9 @@ sub cv25519 2025-03-11 [E]</pre> <div class="h-card"> <span class="p-name">Christian Cleberg</span> <span class="p-nickname">cmc</span> (IRC) - <img class="u-photo" src="https://cmc.pub/favicon.png"/> - <a class="u-url u-uid" href="http://cmc.pub" rel="me">w</a>, - <a class="u-email" href="mailto:hello@cmc.pub">e</a> + <img class="u-photo" src="https://cleberg.net/favicon.png"/> + <a class="u-url u-uid" href="http://cleberg.net" rel="me">w</a>, + <a class="u-email" href="mailto:hello@cleberg.net">e</a> <span class="p-locality">Omaha</span>, <abbr class="p-region" title="Nebraska">NE</abbr>, <div class="p-country-name">U.S.A</div> diff --git a/theme/templates/post.html b/theme/templates/post.html index 5ad5d04..ecd7afa 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@cmc.pub">Reply via email</a></blockquote> + <blockquote><a href="mailto:hello@cleberg.net">Reply via email</a></blockquote> </article> {% endblock %} |