Madelena Mak d4c03fe1be
Update the theme to match branding better (#33462)
Co-authored-by: Franck Nijhof <git@frenck.dev>
2024-06-30 13:47:01 +02:00

19 lines
593 B
HTML

{% capture category %}{{ post.categories | size }}{% endcapture %}
<div class="grid">
<div class="grid__item one-fifth palm-one-whole">
<time datetime="{{ post.date | datetime | date_to_xmlschema }}" pubdate>
{{ post.date | date: "<span class='month'>%b</span> <span class='day'>%d</span>"}}
</time>
</div>
<div class="grid__item four-fifths palm-one-whole">
<h1 class="gamma"><a href="{{ post.url }}">{{post.title}}</a></h1>
{% if category != '0' %}
<footer class="meta">
{% include blog/post/tags.html %}
</footer>
{% endif %}
</div>
</div>