summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorHombreLaser <buran@silosneeded.com>2024-05-05 19:51:24 -0600
committerHombreLaser <buran@silosneeded.com>2024-05-05 19:51:24 -0600
commit30c268fdabca62c7c4df6e8db7426666fc2be66a (patch)
tree8042bfd5d1ebee1ef492b9f1f8cac0e1c4c22438 /index.html
parentbf2c057eece0e777036110526eb488b364dff108 (diff)
Change interface
Diffstat (limited to 'index.html')
-rw-r--r--index.html43
1 files changed, 12 insertions, 31 deletions
diff --git a/index.html b/index.html
index f731a8b..4732439 100644
--- a/index.html
+++ b/index.html
@@ -1,37 +1,18 @@
---
layout: default
---
+<div class="column">
+ {% for post in paginator.posts %}
-<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>
+ <h1>
+ <a href="{{ site.baseurl }}{{post.url }}">
+ {{ post.title }}
+ </a>
+ </h1>
+ <span>
+ {{ post.excerpt }}
+ </span>
+ {% endfor %}
</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>
+{% include pagination.html %}