Website/_layouts/home.html

17 lines
327 B
HTML

{% include header.html %}
<article>
<h2>CreativeCalc en quelques mots</h2>
{{ page.content | markdownify }}
</article>
<hr />
{% for post in site.posts %}
<article class="post" itemscope itemtype="http://schema.org/BlogPosting">
<h2>{{ post.title }}</h2>
{{ post.content }}
</article>
{% endfor %}
{% include footer.html %}