-
Notifications
You must be signed in to change notification settings - Fork 17
/
index.html
39 lines (34 loc) · 1.14 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
---
layout: default
---
<!-- Brief intro -->
<div class="header-intro">
<h2>fffabs</h2>
<p><a href="http://brotherhood.io/">I am a designer & developer. →</a> <br />This is my blog. No promises on frequency.
<br />Let's keep things casual.</p>
</div>
<hr />
<!-- End intro -->
<div class="home">
<ul id="post-list">
{% for post in paginator.posts %}
<li>
<a href="{{ post.url | prepend: site.baseurl }}">
<aside class="dates">{{ post.date | date: "%b %-d" }}</aside>
</a>
<a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }} <h2>{{ post.description }}</h2></a>
<!-- <p>
{{ post.content | truncatewords: 50 }}
</p> -->
</li>
{% endfor %}
</ul>
<div class="pagination">
{% if paginator.previous_page %}
<a class="pagination-link" href="{{ paginator.previous_page_path }}" class="previous"><span class="arrow">←</span> Previous</a>
{% endif %}
{% if paginator.next_page %}
<a class="pagination-link" href="{{ paginator.next_page_path }}" class="next">Next <span class="arrow">→</span></a>
{% endif %}
</div>
</div>