34 lines
No EOL
1.2 KiB
HTML
34 lines
No EOL
1.2 KiB
HTML
<!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>
|
|
<div style="margin-top: 30vh;"></div>
|
|
|
|
<img id="current-blurred" src="{{ asset(articles[0].custom.photo) }}">
|
|
|
|
{% for article in articles %}
|
|
<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") %}
|
|
<img class="front-image" src="{{ asset(article.custom.photo) }}">
|
|
{% endif %}
|
|
</article>
|
|
</a></a>
|
|
{% endfor %}
|
|
|
|
<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> |