-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharticle-add.html
50 lines (47 loc) · 1.79 KB
/
article-add.html
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
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="zh-hant">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>文章撰寫範例</title>
<!-- link -->
<link rel="stylesheet" href="./css/index.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.5.2/css/all.min.css">
<!-- script -->
<script src="https://cdn.jsdelivr.net/gh/pardnchiu/PDRenderKit@1.0.0/dist/PDRenderKit.js" copyright="Pardn Ltd"></script>
<script src="./js/index.js"></script>
<script type="module" src="./js/article-add.js"></script>
<!-- inline-style -->
<style>
.dom-temp {
display: none !important;
}
</style>
</head>
<body id="body">
<!-- 登入 -->
<section class="login dom-temp" :if="is_guest">
<h1>{{ login.title }}</h1>
<section>
<label>
<input type="password" placeholder="密碼" :model="login.password">
</label>
<i class="fa-solid fa-eye-slash" @click="show"></i>
</section>
<button @click="login">
前往
<i class="fa-solid fa-arrow-right"></i>
</button>
</section>
<!-- 主要 -->
<section class="dom-temp" :else>
<!-- 頂部導覽列 -->
<section :path="./view/body-top.html"></section>
<!-- 左側導覽列 -->
<section :path="./view/body-left.html"></section>
<!-- 內容 -->
<section :path="./view/body-right/article-add.html"></section>
</section>
</body>
</html>