-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (31 loc) · 1.01 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
---
layout: default
---
<div class="posts">
{% for post in paginator.posts %}
<article class="post">
<h1><a href="{{post.url | prepend: site.baseurl}}">{{ post.title }}</a></h1>
<div class="entry">
{{ post.excerpt }}
</div>
<a href="{{post.url | prepend: site.baseurl}}" class="button button-primary">Read More</a>
{% if forloop.index == 2 %}
{% include adsense.html %}
{% endif %}
{% if forloop.index == 6 %}
{% include adsense-2.html %}
{% endif %}
</article>
{% endfor %}
<!-- pagination -->
{% if paginator.total_pages > 1 %}
<div class="pagination">
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}" class="button button-secondary">« Prev</a>
{% endif %}
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}" class="button button-secondary">Next »</a>
{% endif %}
</div>
{% endif %}
</div>