aboutsummaryrefslogtreecommitdiff
path: root/templates/index.html
diff options
context:
space:
mode:
authorChristian Cleberg <hello@cleberg.net>2024-03-04 22:34:28 -0600
committerChristian Cleberg <hello@cleberg.net>2024-03-04 22:34:28 -0600
commit797a1404213173791a5f4126a77ad383ceb00064 (patch)
treefcbb56dc023c1e490df70478e696041c566e58b4 /templates/index.html
parent3db79e7bb6a34ee94935c22d7f0e18cf227c7813 (diff)
downloadcleberg.net-797a1404213173791a5f4126a77ad383ceb00064.tar.gz
cleberg.net-797a1404213173791a5f4126a77ad383ceb00064.tar.bz2
cleberg.net-797a1404213173791a5f4126a77ad383ceb00064.zip
initial migration to test org-mode
Diffstat (limited to 'templates/index.html')
-rw-r--r--templates/index.html40
1 files changed, 0 insertions, 40 deletions
diff --git a/templates/index.html b/templates/index.html
deleted file mode 100644
index 8b86fe0..0000000
--- a/templates/index.html
+++ /dev/null
@@ -1,40 +0,0 @@
-{% extends "base.html" %}
-
-{% block content %}
-<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>
- {% 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 }}</time>
- <a href="/blog/{{ page.slug }}/">{{ page.title }}</a>
- </div>
- {% endif %}
- {% endfor %}
- <br>
- <a href="/blog/">All Posts &rarr;</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 content %}