style: format some html templates

This commit is contained in:
Price Hiller 2023-08-27 21:40:16 -05:00
parent ee4699a1e4
commit 11f540a82e
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8
3 changed files with 45 additions and 53 deletions

View File

@ -1,6 +1,5 @@
<!doctype html>
<html lang="en">
<head>
<title>{{ article_title }}</title>
<meta charset="UTF-8" />
@ -8,9 +7,7 @@
<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>
@ -32,5 +29,4 @@
{{ article_content }}
</article>
</body>
</html>

View File

@ -9,7 +9,6 @@
<link href="/style/article.css" rel="stylesheet" />
</head>
{% include "nav.html" %}
<body>
<div class="page-info">
<div class="page-title">{{ tag }}</div>

View File

@ -1,6 +1,5 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<title>Tags</title>
<meta charset="UTF-8" />
@ -8,7 +7,6 @@
<link href="/style/style.css" rel="stylesheet" />
<link href="/style/tags.css" rel="stylesheet" />
</head>
{% include "nav.html" %}
<body>
@ -20,5 +18,4 @@
</ul>
</div>
</body>
</html>