diff options
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 24 |
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> |