-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
48 lines (44 loc) · 1.54 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
---
layout: wrapper
title: Thoughts
description: Thinkings on life, technology and politics.
redirect_from:
- /back-end/
- /front-end/
- /musings/
- /politics/
- /postsbytag/
- /categories/
- /dev/
---
<header class="title">
<h1>Posts</h1>
<p>by <a href="https://union.place/@nottrobin" rel="me">@nottrobin</a></p>
</header>
<form class="search-form" action="https://www.google.com/search">
<input type="hidden" name="sitesearch" value="robinwinslow.uk">
<input id="search-box" type="search" name="q">
<label for="search-box">
<button type="submit">Search posts</button>
</label>
</form>
<ol class="posts">
{% assign artices_newest_first = site.articles | reverse %}
{% for article in artices_newest_first %}
<li>
<article>
<a href="{{ article.url }}"><h1>{{ article.title }}</h1></a>
<p class="date"><time datetime="{{ article.date | date: '%F' }}">{{ article.date | date_to_long_string: "ordinal" }}</time></p>
{% if article.description %}<p>{{ article.description }}</p>{% endif %}
</article>
</li>
{% endfor %}
</ol>
<form class="subscribe" action="https://robinwinslow.us11.list-manage.com/subscribe/post?u=465b74a47b8be795fe29b8415&id=8853044bbe" method="post">
<label for="email">Get notified about new posts</label>
<div>
<input type="email" name="EMAIL" id="email" placeholder="email">
<input type="submit" value="Subscribe" name="subscribe" class="button">
</div>
<input class="hidden" type="text" name="b_465b74a47b8be795fe29b8415_8853044bbe" tabindex="-1">
</form>