aboutsummaryrefslogtreecommitdiff
path: root/theme/templates/index.html
diff options
context:
space:
mode:
authorChristian Cleberg <hello@cleberg.net>2024-04-13 10:48:49 -0500
committerChristian Cleberg <hello@cleberg.net>2024-04-13 10:48:49 -0500
commita6cc3d1f6905b500ce69530d07d17277204c729f (patch)
treeeb10afe9bf33ddb70c71c9518d0e3ce7a2ce0c90 /theme/templates/index.html
parent64f5a07bb30fbcf6cc553205dd1a903fbf8c3dfe (diff)
downloadcleberg.net-a6cc3d1f6905b500ce69530d07d17277204c729f.tar.gz
cleberg.net-a6cc3d1f6905b500ce69530d07d17277204c729f.tar.bz2
cleberg.net-a6cc3d1f6905b500ce69530d07d17277204c729f.zip
organize homepage
Diffstat (limited to 'theme/templates/index.html')
-rw-r--r--theme/templates/index.html61
1 files changed, 48 insertions, 13 deletions
diff --git a/theme/templates/index.html b/theme/templates/index.html
index 4a99aab..ad96a5d 100644
--- a/theme/templates/index.html
+++ b/theme/templates/index.html
@@ -1,20 +1,55 @@
{% extends "base.html" %} {% block main %}
<section>
<h1>cleberg.net</h1>
- <blockquote>
- Do AIs dream in electric sheep?<br />He hoped it had nanosecond nightmares.
- </blockquote>
- <a href="https://git.cleberg.net">git</a>&nbsp;
- <a href="/gpg.txt">gpg</a>&nbsp;
- <a href="https://matrix.to/#/@cyborg:matrix.tchncs.de">matrix</a>&nbsp;
- <a href="/feed.xml">rss</a>
- <br>
- <a href="/blog/">blog</a>&nbsp;
- <a href="/salary/">salary</a>&nbsp;
- <a href="/services/">services</a>&nbsp;
- <a href="/wiki/">wiki</a>
+ <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 &lt;hello@cleberg.net&gt;</pre>
+</section>
+<section>
+ <table>
+ <thead>
+ <tr>
+ <th>link</th>
+ <th>desc</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td><a href="/blog/">blog</a></td>
+ <td>my personal blog</td>
+ </tr>
+ <tr>
+ <td><a href="https://git.cleberg.net">git</a></td>
+ <td>personal git hosting</td>
+ </tr>
+ <tr>
+ <td><a href="https://matrix.to/#/@cyborg:matrix.tchncs.de">matrix</a></td>
+ <td>encrypted chat</td>
+ </tr>
+ <tr>
+ <td><a href="/feed.xml">rss</a></td>
+ <td>feed for my personal blog</td>
+ </tr>
+ <tr>
+ <td><a href="/salary/">salary</a></td>
+ <td>my salary log</td>
+ </tr>
+ <tr>
+ <td><a href="/services/">services</a></td>
+ <td>my public services</td>
+ </tr>
+ <tr>
+ <td><a href="/wiki/">wiki</a></td>
+ <td>my personal wiki</td>
+ </tr>
+ </tbody>
+ </table>
</section>
<footer>
- <p>Last Build: &lt;<time datetime='{{ now() | strftime("%Y-%m-%d %H:%M:%S") }}'>{{ now() | strftime("%Y-%m-%d %a %H:%M:%S") }}</time>&gt;</p>
+ <p>
+ Last Build: &lt;<time datetime='{{ now() | strftime("%Y-%m-%d %H:%M:%S") }}'
+ >{{ now() | strftime("%Y-%m-%d %a %H:%M:%S") }}</time
+ >&gt;
+ </p>
</footer>
{% endblock %}