1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-06-25 02:36:26 +02:00
blog/_src/index.html

23 lines
531 B
HTML
Raw Normal View History

2013-11-18 01:08:13 +01:00
---
layout: default
title: Home
2013-11-18 01:08:13 +01:00
---
{% for post in site.posts %}
<article class="hentry">
<header>
<h1 class="entry-title"><a href="{{ post.url }}">{{ post.title }}</a></h1>
</header>
<section class="entry-content">
<a href="{{ post.url }}">{{ post.image }}</a>
{{ post.excerpt }}
<a class="more-link" href="{{ post.url }}">Continue reading <i class="icon-arrow-right"></i></a>
</section>
</article>
{% endfor %}