diff options
author | Christian Cleberg <hello@cleberg.net> | 2024-07-28 19:46:20 -0500 |
---|---|---|
committer | Christian Cleberg <hello@cleberg.net> | 2024-07-28 19:46:20 -0500 |
commit | 2be43cc479dfd4cfb621f14381330c708291e324 (patch) | |
tree | 7ac50f99425c5524c0820360754045b80d1bafcc /theme/templates/index.html | |
parent | afe76ac7d7498b862abaa623790b91410e34574d (diff) | |
download | cleberg.net-2be43cc479dfd4cfb621f14381330c708291e324.tar.gz cleberg.net-2be43cc479dfd4cfb621f14381330c708291e324.tar.bz2 cleberg.net-2be43cc479dfd4cfb621f14381330c708291e324.zip |
conversion from Zola to Weblorg
Diffstat (limited to 'theme/templates/index.html')
-rw-r--r-- | theme/templates/index.html | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/theme/templates/index.html b/theme/templates/index.html new file mode 100644 index 0000000..c77e57d --- /dev/null +++ b/theme/templates/index.html @@ -0,0 +1,60 @@ +{% 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> +</section> +<section> + <h2>Recent Blog Posts</h2> + + <div class="post"> + <time datetime="2024-07-11 20:24:02">2024-07-11</time> + <a href="/blog/emacs-on-ipad/">Emacs on iPadOS</a> + </div> + + <div class="post"> + <time datetime="2024-06-19 08:00:00">2024-06-19</time> + <a href="/blog/deprecated-trusted-gpg-fix/" + >Fixing Ubuntu Error: 'Key is stored in legacy trusted.gpg keyring'</a + > + </div> + + <div class="post"> + <time datetime="2024-05-03 00:00:00">2024-05-03</time> + <a href="/blog/ubuntu-on-macos/" + >Running Ubuntu Linux on macOS with OrbStack</a + > + </div> + + <br /> + <a href="/blog/">All Posts →</a> +</section> + +<section> + <h2>Everything Else</h2> + <ul> + <li><a href="https://cv.cleberg.net">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> + </ul> +</section> + +<section> + <h2>Contact</h2> + <ul> + <li> + hello [at] cleberg.net (<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://matrix.to/#/@cyborg:matrix.tchncs.de" + >@cyborg:@matrix.tchncs.de</a + > + </li> + <li><a href="https://git.sr.ht/~cyborg/">Sourcehut</a></li> + </ul> +</section> + +{% endblock %} |