diff options
author | Christian Cleberg <hello@cleberg.net> | 2024-03-29 01:42:38 -0500 |
---|---|---|
committer | Christian Cleberg <hello@cleberg.net> | 2024-03-29 01:42:38 -0500 |
commit | 00b2726e0561f174393ae600f0f11adb8afebaab (patch) | |
tree | a4733d553ce68f64277ffa3a52f800dc58ff72de /theme/templates/index.html | |
parent | 8ba3d90a0f3db7e5ed29e25ff6d0c1b557ed3ca0 (diff) | |
parent | 41bd0ad58e44244fe67cb36e066d4bb68738516f (diff) | |
download | cleberg.net-00b2726e0561f174393ae600f0f11adb8afebaab.tar.gz cleberg.net-00b2726e0561f174393ae600f0f11adb8afebaab.tar.bz2 cleberg.net-00b2726e0561f174393ae600f0f11adb8afebaab.zip |
merge org branch into main
Diffstat (limited to 'theme/templates/index.html')
-rw-r--r-- | theme/templates/index.html | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/theme/templates/index.html b/theme/templates/index.html new file mode 100644 index 0000000..923d920 --- /dev/null +++ b/theme/templates/index.html @@ -0,0 +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> +</section> +<section> + <h2>Recent Blog Posts</h2> +<<<<<<< HEAD:templates/index.html + {% set section = get_section(path="blog/_index.md") %} + {% set i = 0 %} + {% for page in section.pages %} + {% if i < 3%} + {% set_global i = i + 1%} + <div class="post"> + <time datetime="{{ page.date | date(format='%Y-%m-%d %H:%M:%S') }}">{{ page.date | date(format='%Y-%m-%d') }}</time> + <a href="/blog/{{ page.slug }}/">{{ page.title }}</a> + </div> + {% endif %} + {% endfor %} +======= + <div class="post"> + <time datetime="2024-03-15"><2024-03-15></time> + <a href="/blog/self-hosting-ddns-updater.html">Self-Hosting DDNS Updater</a> + </div> + <div class="post"> + <time datetime="2024-03-14"><2024-03-14></time> + <a href="/blog/doom-emacs-org-mode.html">Doom Emacs & Org-Mode</a> + </div> + <div class="post"> + <time datetime="2024-02-21"><2024-02-21></time> + <a href="/blog/self-hosting-an-otter-wiki.html">Self-Hosting An Otter Wiki</a> + </div> +>>>>>>> org:theme/templates/index.html + <br> + <a href="/blog/">All Posts →</a> +</section> +<section> + <h2>Everything Else</h2> + <ul> + <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="/gpg.txt">GPG</a>)</li> + <li><a href="https://matrix.to/#/@cyborg:matrix.tchncs.de" target="_blank" rel="noopener">@cyborg:@matrix.tchncs.de</a></li> + <li><a href="https://git.cleberg.net/cleberg.net.git" target="_blank" rel="noopener">Git</a></li> + </ul> +</section> +{% endblock %} |