summaryrefslogtreecommitdiffstats
path: root/index.md
diff options
context:
space:
mode:
Diffstat (limited to 'index.md')
-rw-r--r--index.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/index.md b/index.md
new file mode 100644
index 0000000..827d51e
--- /dev/null
+++ b/index.md
@@ -0,0 +1,15 @@
+---
+layout: default
+title: "Home"
+---
+
+<ul id="post-list">
+ {% assign posts = site.log | sort: 'date' | reverse %}
+ {% for post in posts limit: include.limit %}
+ <li>
+ <time>{{ post.date | date: "%Y-%m-%d" }}</time>
+ <a href="{{ post.url }}" class="link-decor-none">{{ post.title }}</a>
+ </li>
+ {% endfor %}
+</ul>
+