blog-software-java/example_workdir/template/index_template.html
Minecon724 fff71d1140
Some checks are pending
/ build (push) Waiting to run
Asset remapping / Cache buster
Signed-off-by: Minecon724 <git@m724.eu>
2025-03-04 14:19:31 +01:00

34 lines
No EOL
1.1 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>
<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 %}
<ul>
{% for e in site.custom.coolerProperty.aList %}
<li>{{ e }}</li>
{% endfor %}
</ul>
<a href="{{ asset('hello.txt') }}">This is an asset that says:</a>
<blockquote>Hello, world!</blockquote>
<a href="{{ asset('another.txt') }}">This is another asset that says things about assets.</a>
</body>
</html>