-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage-template.html
More file actions
38 lines (31 loc) · 998 Bytes
/
page-template.html
File metadata and controls
38 lines (31 loc) · 998 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="vi">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ title }}</title>
<link rel="stylesheet" href="/style.css">
</head>
<body>
<header class="site-header">
<div class="logo">
<img src="/assets/logo.png" alt="Khu đọc mở">
</div>
<div class="site-title">
<h1><a href="/">Khu đọc mở</a></h1>
<p class="subtitle">Nơi lưu trữ các tác phẩm đã thuộc Phạm vi công cộng.</p>
</div>
</header>
<nav class="main-nav">
<a href="/">Trang chủ</a>
<a href="/tac-pham/">Kho sách</a>
<a href="/danh-sach-tac-gia/">Danh sách tác giả</a>
<a href="/search/">Tìm kiếm</a>
<a href="/about/">Thông tin</a>
<a href="/huong-dan/">Hướng dẫn</a>
</nav>
<section class="intro-box">
{{ content }}
</section>
</body>
</html>