frog-website/src/pages/index/news.html

24 lines
682 B
HTML

{% from "lib/section.html" import section %}
{% call section(
gettext("News"),
"news",
"/img/section-news.png",
title_picture_offset="0px",
title_color = "var(--color-primary)"
) %}
{% for news in glob("news/*.md") | sort(reverse=true, attribute='path') | map('markdown') %}
<div class="news">
<a class="section--anchor" id="{{news.meta.id}}"></a>
<div class="news--header">
<h3 class="news--date">{{ news.meta.date }}</h3>
<h2 class="news--title">{{ news.meta.title }}</h2>
</div>
<div class="news--content">
<style>{{ news.meta.css }}</style>
{{ news }}
</div>
</div>
{% endfor %}
{% endcall %}