2025-01-14 14:13:46 +01:00
<!DOCTYPE html>
< html lang = "en" >
< head >
< meta charset = "utf-8" >
< title > {{ site.name }}< / title >
< meta name = "viewport" content = "width=device-width, initial-scale=1" / >
< link rel = "stylesheet" href = "{{ static('style.css') }}" >
< / head >
< body >
2025-01-16 15:35:51 +01:00
< div id = "page-content" >
< div style = "margin-top: 30vh;" > < / div >
2025-01-14 14:13:46 +01:00
2025-01-16 15:35:51 +01:00
< img id = "current-blurred" src = "{{ asset(articles[0].custom.photo) }}" >
2025-01-14 14:13:46 +01:00
2025-01-16 15:35:51 +01:00
{% for article in articles %}
2025-01-14 14:13:46 +01:00
< a href = "post/{{ article.slug }}.html" class = "post-short" >
< article >
< header >
< p class = "title" > {{ article.title }}< / p >
< p class = "description" > {{ article.summary }}< / p >
< / header >
{% if article.custom.containsKey("photo") %}
2025-01-16 15:35:51 +01:00
< img class = "front-image" src = "{{ asset(article.custom.photo) }}" >
2025-01-14 14:13:46 +01:00
{% endif %}
< / article >
< / a > < / a >
2025-01-16 15:35:51 +01:00
{% endfor %}
< / div >
2025-01-14 14:13:46 +01:00
< div id = "footer" >
< p > Content on m724.eu is licensed under < a href = "https://creativecommons.org/licenses/by/4.0" target = "_blank" rel = "license noopener noreferrer" > CC BY 4.0< / a > < / p >
< / div >
< / body >
< / html >