-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·57 lines (53 loc) · 2 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
50
51
52
53
54
55
56
57
---
title: Home
layout: default
pagination:
enabled: true
---
<!-- Main -->
<section class="wrapper style1">
<div class="container">
<div class="row double">
<div class="4u">
{% include home-sidebar.html %}
</div>
<div class="8u skel-cell-important">
<div id="content">
<!-- Blog -->
<section>
{% for post in paginator.posts %}
<div class="row">
<section class="8u skel-cell-important">
<div class="box post">
<a class="image left"><img src="{{ site.baseurl }}{{ post.featured }}" alt=""></a>
<div class="inner">
<h3><a href="{{ site.baseurl }}{{ post.url }}" rel="bookmark" title="Permanent Link to {{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h3>
<time itemprop="dateCreated" datetime="{{post.date}}">{{ post.date | date:"%B %-d, %Y" }}</time>
{{ post.excerpt }}
<footer>
<a href="{{ site.baseurl }}{{ post.url }}" class="button">Continue Reading</a>
</footer>
</div>
</div>
</section>
</div>
{% endfor %}
{% if paginator.total_pages > 1 %}
<ul>
{% if paginator.previous_page %}
<li>
<a href="{{ paginator.previous_page_path | prepend: site.baseurl }}">Newer</a>
</li>
{% endif %}
{% if paginator.next_page %}
<li>
<a href="{{ paginator.next_page_path | prepend: site.baseurl }}">Older</a>
</li>
{% endif %}
</ul>
{% endif %}
</section>
</div>
</div>
</div>
</section>