This commit is contained in:
Loïc Guibert
2022-09-30 20:06:40 +01:00
commit 0637652909
47 changed files with 10294 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<article class="post" itemscope itemtype="http://schema.org/BlogPosting" role="article">
<div class="article-item">
<header class="post-header">
{% if post.header.link %}
<h2 class="post-title" itemprop="name"><a href="{{ post.url }}" rel="bookmark" title="{{ post.title }}" itemprop="url"><i class="fa fa-angle-double-right"></i></a> <a href="{{ post.header.link }}">{{ post.title }}</a></h2>
{% else %}
<h2 class="post-title" itemprop="name"><a href="{{ post.url }}" itemprop="url">{{ post.title }}</a></h2>
{% endif %}
</header>
<section class="post-excerpt" itemprop="description">
<p>{{ post.content | striptags | truncate(200) }}</p>
</section>
<div class="post-meta">
<time datetime="{{ post.date | date(site.date_long) }}">{{ post.date | date(site.date_long) }}</time>
{% if post.taxonomy.tag|length > 0 %}
<span class="post-tags-set">{{ 'METADATA.IN_POST'|t }} {% for tag in post.taxonomy.tag %}<span class="post-tag-{{tag}}"><a href="{{ base_url }}/tag{{ config.system.param_sep }}{{ tag }}">{{ tag }}</a></span>{%if not loop.last %}, {% endif %}{% endfor %}</span>
{% endif %}
</div>
</div>
</article>