-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (34 loc) · 1019 Bytes
/
index.html
File metadata and controls
39 lines (34 loc) · 1019 Bytes
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
---
layout: page
---
{% assign post = site.posts[0] %}
{% include post.html %}
<div class="post-footer">
<div id="signature"></div>
<p>
Send feedback via
<a href="{{ site.urls.mastodon }}" target=_blank>Mastodon</a> or
{% capture subject %}Feedback: {{ post.title }}{% endcapture %}
<a href="mailto:{{ site.email }}?subject={{ subject | uri_escape }}">email</a>.
</p>
</div>
<ul class="post-list">
{%- for post in site.posts limit:site.paginate offset:1 -%}
<li{% if post.draft %} style="font-style: italic"{% endif %}>
<a href="{{ post.url }}">
<span class="post-name">{{ post.title }}</span>
<span class="dots"></span>
<span class="date">{{ post.date | date: site.date_format_short }}</span>
</a>
</li>
{%- endfor -%}
<li>
<a href="/archive/#{{ post.url }}">
<span class="post-name">All posts</span>
<span class="dots"></span>
<span class="date">→</span>
</a>
</li>
</ul>
<br>
{% include pagination.html %}