mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-22 09:56:51 +01:00
23 lines
531 B
HTML
23 lines
531 B
HTML
---
|
|
layout: default
|
|
title: Home
|
|
---
|
|
|
|
{% 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 %} |