summaryrefslogtreecommitdiff
path: root/index.html
blob: f731a8b618fe5b41192806e7144164a96a57e4bf (plain)
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
---
layout: default
---

<div class="container container-left">
  <div class="row">
    <div class="col-md-9">
      <div class="well">
	<ul style="list-style:none">
	  {% for post in paginator.posts %}
	  <li>
	    <h1><a href="{{ site.baseurl }}{{ post.url }}">{{ post.date | date: "%b %-d, %Y" }} - {{ post.title }}</a></h1>
	    <div class="post-content">
	      {{ post.excerpt }}
	    </div>
	  </li>
	  {% endfor %}
	</ul>
	</ul>
      </div>
    </div>
  </div>
</div>

<div class="pagination">
  {% if paginator.previous_page %}
      {% if paginator.previous_page == 1 %}
        <a class="btn btn-default" href="{{ site.baseurl}}/index.html" class="previous">{% t global.newer %}</a>
      {% else %}
        <a class="btn btn-default" href="{{ site.baseurl}}/page{{ paginator.previous_page }}" class="previous">{% t global.newer %}</a>
      {% endif %}
  {% endif %}
  <span class="page_number ">{% t global.page %} {{ paginator.page }} {% t global.of %} {{ paginator.total_pages }}</span>
  {% if paginator.next_page %}
    <a class="btn btn-default" href="{{ site.baseurl}}/page{{ paginator.next_page }}" class="next">{% t global.older %}</a>
  {% endif %}
</div>