aboutsummaryrefslogtreecommitdiff
path: root/templates/index.html
blob: 3e5f9803b6bd610c4e2254b18d676167af8288e9 (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
{% 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.sr.ht/~cyborg/" target="_blank" rel="noopener">Sourcehut</a></li>
	</ul>
</section>
{% endblock content %}