-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Remote
committed
May 31, 2024
1 parent
5d59984
commit 0fde28e
Showing
28 changed files
with
272 additions
and
2,367 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
**/.DS_Store | ||
**/workspace.code-workspace | ||
**/sass | ||
# **/index.js | ||
**/index.js | ||
**/Icon? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
<!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"> | ||
<link rel="stylesheet" href="https://pardnchiu.github.io/markdown-editor/css/md-viewer.css"> | ||
<!-- script --> | ||
<script src="https://pardnchiu.github.io/PDExtension-js/v3/PDExtension.min.js" copyright="Pardn Ltd" defer></script> | ||
<script src="./js/index.js"></script> | ||
<script type="module" src="./js/code-edit.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 class="body-right"> | ||
<!-- 頂部導覽列 --> | ||
<nav> | ||
<button @click="body_left_show"> | ||
<i class="fa-solid fa-bars"></i> | ||
</button> | ||
<a :href="e.href" :for="e in top_tab">{{ e.title }}</a> | ||
</nav> | ||
<!-- 頂部按鈕 --> | ||
<section class="top-button"> | ||
<section> | ||
<button class="hint" title="儲存" @click="save"> | ||
<i class="fa-solid fa-floppy-disk"></i> | ||
</button> | ||
<span></span> | ||
<button class="hint" title="返回" @click="go_back"> | ||
<i class="fa-solid fa-reply"></i> | ||
</button> | ||
<button class="hint" title="前進" @click="go_forward"> | ||
<i class="fa-solid fa-share"></i> | ||
</button> | ||
</section> | ||
</section> | ||
<!-- --> | ||
<section class="markdown file"> | ||
<section class="editor code"> | ||
</section> | ||
</section> | ||
</section> | ||
</section> | ||
</body> | ||
|
||
</html> |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.