aboutsummaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'index.html')
-rw-r--r--index.html32
1 files changed, 32 insertions, 0 deletions
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..ce4965c
--- /dev/null
+++ b/index.html
@@ -0,0 +1,32 @@
+---
+layout: default
+title: Home
+---
+
+<div class="catalogue">
+ {% for post in paginator.posts %}
+ <a href="{{ post.url | prepend: site.baseurl }}" class="catalogue-item">
+ <div>
+ <time datetime="{{ post.date }}" class="catalogue-time">{{ post.date | date: "%B %d, %Y" }}</time>
+ <h1 class="catalogue-title">{{ post.title }}</h1>
+ <div class="catalogue-line"></div>
+
+ <p>
+ {{ post.content | truncatewords: 30 | strip_html }}
+ </p>
+ </div>
+ </a>
+ {% endfor %}
+</div>
+
+<div class="pagination">
+ {% if paginator.previous_page %}
+ <a href="{{ paginator.previous_page_path | prepend: site.baseurl }}" class="left arrow">&#8592;</a>
+ {% endif %}
+
+ {% if paginator.next_page %}
+ <a href="{{ paginator.next_page_path | prepend: site.baseurl }}" class="right arrow">&#8594;</a>
+ {% endif %}
+
+ <span>{{ paginator.page }}</span>
+</div>