Blog/assets/templates/article.html

33 lines
1005 B
HTML
Raw Normal View History

2023-08-27 20:17:16 -05:00
<!doctype html>
<html lang="en">
2023-08-27 21:40:16 -05:00
<head>
<title>{{ article_title }}</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<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 article-name">{{ article_title }}</div>
<div class="page-detail article-summary">{{ article_summary }}</div>
<div class="article-dates">
<div class="article-published">{{ article_published }}</div>
<div class="article-last-updated">{{ article_last_updated }}</div>
</div>
<div class="article-tags">
<ul>
{% for tag in article_tags -%}
<li><a href="/tags/{{ tag }}.html">{{ tag }}</a></li>
{% endfor -%}
</ul>
</div>
2023-08-27 20:17:16 -05:00
</div>
2023-08-27 21:40:16 -05:00
<article>
<hr />
{{ article_content }}
</article>
</body>
2023-08-27 20:17:16 -05:00
</html>