-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (46 loc) · 1.77 KB
/
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
46
47
48
49
---
layout: base.html
---
<h1>Welcome, <em>traveler.</em></h1>
<aside aria-hidden="true">&</aside>
<main class="home">
<nav>
{% for year, posts in collections.postsByYear | reverse %}
<span>{{ year }}</span>
<ol>
{% for post in posts | reverse %}
<li>
<a href="#{{ post.date | urlDate | slugify }}"><time>{{ post.date | shortDate }}</time></a>
</li>
{% endfor %}
{# {% for post in collections.postsByYear[year]%}
<a href="#{{ post.date | urlDate | slugify }}"><time>{{ post.date | shortDate }}</time></a>
{% endfor %} #}
</ol>
{% endfor %}
<span><a href="#">back to top</a></span>
</nav>
<div>
{% for post in collections.posts | reverse %}
<article id="{{ post.date | urlDate | slugify }}">
<time>{{ post.date | timezonedDate(post.data.gps) }}</time>
<pre>{{ post.templateContent }}</pre>
<a href="/posts/{{ post.date | urlDate | slugify }}/" class="permalink">permalink</a>
{% if post.data.gps %}<address>{{ post.data.gps }}</address>{% endif %}
</article>
{% endfor %}
</div>
</main>
<footer class="secret">
my, you are certainly curious, eh! what a delight it must be to know you.
i feel you are a dear friend to me already.
</footer>
<!-- <form name="notes" method="POST" data-netlify="true" netlify-honeypot="bot-field" action="/">
<label>
<div>leave a kind note, or rare secret.</div>
<input type="text" name="note" required>
<label class="secret">Don’t fill this out if you’re human: <input name="bot-field" /></label>
<button type="submit">send</button>
</label>
</form>
-->