style: format some html templates
This commit is contained in:
parent
ee4699a1e4
commit
11f540a82e
@ -1,17 +1,14 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<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>
|
||||
</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>
|
||||
@ -31,6 +28,5 @@
|
||||
<hr />
|
||||
{{ article_content }}
|
||||
</article>
|
||||
</body>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
@ -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>
|
||||
|
@ -1,17 +1,15 @@
|
||||
<!DOCTYPE html>
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<head>
|
||||
<title>Tags</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/tags.css" rel="stylesheet" />
|
||||
</head>
|
||||
</head>
|
||||
{% include "nav.html" %}
|
||||
|
||||
{% include "nav.html" %}
|
||||
|
||||
<body>
|
||||
<body>
|
||||
<div class="tags">
|
||||
<ul>
|
||||
{% for tag in tags -%}
|
||||
@ -19,6 +17,5 @@
|
||||
{% endfor -%}
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
Loading…
Reference in New Issue
Block a user