mirror of
https://github.com/Misterio77/Foundry.git
synced 2026-08-27 10:04:19 -05:00
24 lines
536 B
HTML
24 lines
536 B
HTML
---
|
|
title: Latest Posts
|
|
description: Ocasional thoughts and guides
|
|
permalink: /blog/
|
|
listing: true
|
|
---
|
|
|
|
{% for post in site.posts %}
|
|
<article>
|
|
<header>
|
|
<p>
|
|
<time datetime="{{ post.date | date_to_xmlschema }}">
|
|
{{ post.date | date_to_long_string: "ordinal" }}
|
|
</time>
|
|
<small>({{ post.language }})</small>
|
|
</p>
|
|
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
|
|
</header>
|
|
<section>
|
|
<p>{{ post.excerpt | strip_html }}</p>
|
|
</section>
|
|
</article>
|
|
{% endfor %}
|