-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (26 loc) · 1.19 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
---
layout: default
title: Home
group: navigation
---
{% for post in paginator.posts %}
<article>
<div class="heading"><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></div>
<p class="meta"><a class="permalink" href="{{ site.baseurl }}{{ post.url }}">●</a> {{ post.date | date_to_string }}</p>
<p class="meta"><a href="https://twitter.com/ThatcherClay" class="twitter-follow-button" data-show-count="false">Follow @ThatcherClay</a><script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script></p>
<p class="meta"><b><a class="link" href="https://tinyletter.com/urban_calc" target="None">Subscribe to Newsletter</a></b></p>
<div>
{{ post.content }}
</div>
{% include tags.html %}
</article>
<hr>
{% endfor %}
<ul class="pager">
{% if paginator.previous_page %}
<li class="previous"><a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">← Newer</a></li>
{% endif %}
{% if paginator.next_page %}
<li class="next"><a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Older →</a></li>
{% endif %}
</ul>