-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (32 loc) · 1.2 KB
/
index.html
File metadata and controls
37 lines (32 loc) · 1.2 KB
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
title: Sharewave Blog
---
<div id="home" class="postwidth">
{% for post in paginator.posts %}
<h1><a class="header" href="{{ post.url }}">{{ post.title }}</a></h1>
<p class="date"> {{ post.date | date: '%B %-d, %Y' }}
</p>
{{ post.excerpt }}
<h4><a href="{{ post.url }}">Read More +</a></h4>
<div class="post-break"></div>
{% endfor %}
</div>
<!-- Pagination links -->
<div class="row-fluid postwidth">
<div class="span12" style="padding-bottom:35px">
<nav id="pagination">
{% if paginator.previous_page %}
{% if paginator.previous_page == 1 %}
<a href="/" class="navbar-inverse pull-left" style="text-decoration:none" title="Previous Page"><h4>« Previous</h4></a>
{% else %}
<a href="/page{{ paginator.previous_page }}/" class="navbar-inverse pull-left" style="text-decoration:none" title="Newer Posts"><h4>« Previous</h4></a>
{% endif %}
{% endif %}
{% if paginator.next_page %}
<a href="/page{{ paginator.next_page }}/" class="navbar-inverse pull-right" style="text-decoration:none" title="Older Posts"><h4>Next »</h4></a>
{% endif %}
</nav>
</div>
</div>
{% include subscribe.html %}