style: format some html templates
This commit is contained in:
parent
ee4699a1e4
commit
11f540a82e
@ -1,6 +1,5 @@
|
|||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<title>{{ article_title }}</title>
|
<title>{{ article_title }}</title>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
@ -8,9 +7,7 @@
|
|||||||
<link href="/style/style.css" rel="stylesheet" />
|
<link href="/style/style.css" rel="stylesheet" />
|
||||||
<link href="/style/article.css" rel="stylesheet" />
|
<link href="/style/article.css" rel="stylesheet" />
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
{% include "nav.html" %}
|
{% include "nav.html" %}
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<div class="page-info">
|
<div class="page-info">
|
||||||
<div class="page-title article-name">{{ article_title }}</div>
|
<div class="page-title article-name">{{ article_title }}</div>
|
||||||
@ -32,5 +29,4 @@
|
|||||||
{{ article_content }}
|
{{ article_content }}
|
||||||
</article>
|
</article>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
@ -9,7 +9,6 @@
|
|||||||
<link href="/style/article.css" rel="stylesheet" />
|
<link href="/style/article.css" rel="stylesheet" />
|
||||||
</head>
|
</head>
|
||||||
{% include "nav.html" %}
|
{% include "nav.html" %}
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<div class="page-info">
|
<div class="page-info">
|
||||||
<div class="page-title">{{ tag }}</div>
|
<div class="page-title">{{ tag }}</div>
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
<!DOCTYPE html>
|
<!doctype html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<title>Tags</title>
|
<title>Tags</title>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
@ -8,7 +7,6 @@
|
|||||||
<link href="/style/style.css" rel="stylesheet" />
|
<link href="/style/style.css" rel="stylesheet" />
|
||||||
<link href="/style/tags.css" rel="stylesheet" />
|
<link href="/style/tags.css" rel="stylesheet" />
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
{% include "nav.html" %}
|
{% include "nav.html" %}
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
@ -20,5 +18,4 @@
|
|||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
Loading…
Reference in New Issue
Block a user