summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authoruvok cheetah2019-05-14 21:20:17 +0200
committeruvok cheetah2019-05-14 21:20:17 +0200
commit92411ecbd9f0cbcec5620de2efbefade7254afca (patch)
tree807f42473fd484ff9434753ac04f70b609624678 /index.html
Initial commit
Diffstat (limited to 'index.html')
-rw-r--r--index.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..8e063b3
--- /dev/null
+++ b/index.html
@@ -0,0 +1,24 @@
+---
+layout: default
+---
+
+<div class="home">
+
+ <ul class="post-list">
+ {% for post in site.posts %}
+ <li>
+ <span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
+ <h2>
+ <a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
+ </h2>
+ {% if post == site.posts[0] %}
+ <div>{{ post.content }}</div>
+ {% endif %}
+
+ </li>
+ {% endfor %}
+ </ul>
+
+ <p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
+
+</div>