blog-software-java/example_workdir/template/index_template.html
2025-01-19 10:30:35 +01:00

23 lines
No EOL
732 B
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>
<h1>{{ site.name }} - {{ site.custom.coolProperty }}</h1>
{% 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>
</article>
</a>
{% endfor %}
</body>
</html>