33 lines
1.0 KiB
HTML
33 lines
1.0 KiB
HTML
{% import "article-frontmatter.html" as front_matter_macro %}
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Tags</title>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta name="description" content="Articles with tag {{ tag }}" />
|
|
<link href="/style/style.css" rel="stylesheet" />
|
|
<link href="/style/article.css" rel="stylesheet" />
|
|
</head>
|
|
{% include "nav.html" %}
|
|
<body>
|
|
<div class="page-info">
|
|
<div class="page-title">{{ tag }}</div>
|
|
<div class="page-detail">Articles tagged <code>{{ tag }}</code></div>
|
|
</div>
|
|
<div class="articles-container">
|
|
<ul>
|
|
{% for article in article_links | sort(attribute="frontmatter.published") | reverse -%}
|
|
<a href="/articles/{{ article.link }}">
|
|
<li>
|
|
{{ front_matter_macro::gen(frontmatter=article.frontmatter,
|
|
link=article.link) }}
|
|
</li>
|
|
</a>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% include "footer.html" %}
|
|
</body>
|
|
</html>
|