blob: 6d280ee4d38768cb8535cee67ed120ca5c37a5df (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
{# The home page: authored prose plus the most recent posts.
A generated page, so it has no source .org file — `pages` holds the blog collection's
entries, newest first, and the prose lives here. This mirrors what weblorg's
theme/templates/index.html does today, including its bare <title>: the home page is
"cleberg.net" and not "cleberg.net - cleberg.net". #}
{% extends "base.html" %}
{% block subtitle %}{% endblock %}
{% block main %}
<section>
<h1>{{ page.title }}</h1>
<p>[ <a href="https://krz.sh">krz</a> · <a href="https://audit-labs.dev">audit labs</a> ]</p>
<p>Privacy · Self-Hosting · iOS</p>
<p>I build tools, write about systems, and run my own infrastructure. Focused on privacy,
user control, and long-term utility.</p>
<p><a href="{{ root }}uses/index.html">Uses</a> · <a href="{{ root }}now/index.html">Now</a></p>
</section>
<section>
<h2>Recent Posts</h2>
<p>Things I've written recently.</p>
<ul class="post-list">
{%- for entry in pages %}
{%- if loop.index <= 3 %}
<li class="post-list-item">
{%- if entry.date_iso %}<time datetime="{{ entry.date_iso }}">{{ entry.date_iso }}</time>{% endif %}
<a href="{{ root }}{{ entry.url }}">{{ entry.title }}</a>
</li>
{%- endif %}
{%- endfor %}
</ul>
<p><a href="{{ root }}blog/index.html">All Posts →</a></p>
</section>
<section>
<h2>Elsewhere</h2>
<p>Places to find me online.</p>
<ul>
<li>cgit (primary): <a href="https://git.krz.sh">~cmc</a></li>
<li>GitHub (mirror): <a href="https://github.com/ccleberg">@ccleberg</a></li>
<li>Email: <a href="mailto:[email protected]">[email protected]</a> (<a href="{{ root }}gpg.txt">GPG</a>)</li>
<li>Lemmy: <a href="https://r.nf/u/cmc">@cmc</a></li>
<li>Mastodon: <a href="https://c.im/@cmc">@cmc</a></li>
<li>Pixelfed: <a href="https://gram.social/cmc">@cmc</a></li>
</ul>
</section>
{% endblock %}
|