-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
46 lines (44 loc) · 1.45 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
---
layout: default
title: Home
---
<div class="front-feed">
<ul>
{% for post in paginator.posts %}
{% assign author = site.authors[post.author] %}
{% assign bg_photo = post.bg_photo %}
{% if post.bg_photo %}
<li class="post with-bg-photo">
<div class="bg-photo" style="background-image: url('{{ bg_photo }}')"></div>
{% else %}
<li class="post">
{% endif %}
<div class="post-wrap">
<h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
<div class="summary">
{{ post.content | strip_html | truncatewords: 50 }}
</div>
<div class="about">
Written by <span class="author"><a href="{{ author.url }}">{{ author.name }}</a></span> on <span class="date">{{ post.date | date_to_string }}.</span>
</div>
</div>
</li>
{% endfor %}
</ul>
<div class="pagination">
{% if paginator.next_page %}
<a class="pagination-item older" href="/page{{paginator.next_page}}">Older</a>
{% else %}
<span class="pagination-item older">Older</span>
{% endif %}
{% if paginator.previous_page %}
{% if paginator.page == 2 %}
<a class="pagination-item newer" href="/">Newer</a>
{% else %}
<a class="pagination-item newer" href="/page{{paginator.previous_page}}">Newer</a>
{% endif %}
{% else %}
<span class="pagination-item newer">Newer</span>
{% endif %}
</div>
</div>