-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (37 loc) · 1003 Bytes
/
index.html
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
---
layout: base
title: Home
---
<script>
if (typeof navigator.serviceWorker !== 'undefined') {
navigator.serviceWorker.register('sw.js')
}
</script>
<div class="features">
<a class="feature" href="{{ '/games.html' | absolute_url }}">
<h3>Game Design</h3>
<div>Board game projects, from prototype to publish</div>
</a>
<a class="feature" href="{% post_url /2011-04-28-music-made-me %}">
<h3>Music Made Me</h3>
<div>An autobiography as told by music</div>
</a>
<a class="feature" href="{{ '/tags/2024.html' | absolute_url }}">
<h3>2024 in Review</h3>
<div>My favorite media from 2024</div>
</a>
</div>
<div class="posts">
{% for post in paginator.posts %}
<div class="post">
<h1 class="post-title">
<a href="{{ post.url | absolute_url }}">
{{ post.title }}
</a>
</h1>
<span class="post-date">{{ post.date | date_to_string }}</span>
{{ post.content }}
</div>
{% endfor %}
</div>
{% include pagination.html %}