
Some checks are pending
/ build (push) Waiting to run
Signed-off-by: Minecon724 <git@m724.eu>
34 lines
No EOL
1.1 KiB
HTML
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="article/{{ article.slug }}.html" class="article-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> |