personal_site/_includes/project_summary.html
2024-09-09 09:48:55 +02:00

17 lines
860 B
HTML

<article class="h-entry project">
<a class="u-uid u-url photo" href="{{ post.url }}" aria-label="Project: {{ post.title }}">
{% assign default_thumbnail = post.assets | append: '/thumbnail.min.svg' %}
<img class="u-photo {{post.img.class}}"
src = "{{post.img.src | default: default_thumbnail}}"
alt="{{post.img.alt | smartify}}"
width=128 height=128>
</a>
<section>
<section class="title-date-container">
<h2 class="p-name blogroll-title"><a class="u-uid u-url" href="{{ post.url }}">{{ post.title }}</a></h2>
<time class="dt-modified" datetime="{{ post.last_modified_at | date_to_xmlschema }}">{{ page.last_modified_at | date: '%b %Y' }}</time>
</section>
<summary class="p-summary">{{ post.excerpt | markdownify | remove: '<p>' | remove: '</p>' }}</summary>
</section>
</article>