-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (48 loc) · 2.02 KB
/
index.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
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Electron Markdown</title>
<link rel="stylesheet" href="assets/css/page/variables.css">
<link rel="stylesheet" href="assets/css/page/nativize.css">
<link rel="stylesheet" href="assets/css/page/global.css">
<link rel="stylesheet" href="assets/css/page/nav.css">
<link rel="stylesheet" href="assets/css/page/section.css">
<link rel="stylesheet" href="assets/css/page/markdown.css">
<link rel="stylesheet" href="assets/css/page/editor.css">
<link rel="stylesheet" href="assets/css/page/about.css">
<link rel="import" href="sections/blog/markdown.html">
<link rel="import" href="sections/blog/markdemo.html">
<link rel="import" href="sections/about.html">
</head>
<body>
<nav class="nav js-nav">
<header class="nav-header">
<h1 class="nav-title">Electron <strong>markdown</strong></h1>
<svg class="nav-header-icon"><use xlink:href="assets/img/icons.svg#icon-electron"></use></svg>
</header>
<div class="nav-item u-category-blog">
<h5 class="nav-category">
<svg class="nav-icon"><use xlink:href="assets/img/icons.svg#icon-windows"></use></svg>
博客
</h5>
<button type="button" id="button-markdown" data-section="markdown" class="nav-button">写博客<em>markdown</em></button>
<button type="button" id="button-markdemo" data-section="markdemo" class="nav-button">markdown语法<em>demo</em></button>
</div>
<footer class="nav-footer">
<button type="button" id="button-about" data-modal="about" class="nav-footer-button">About</button>
<a class="nav-footer-logo" href="https://github.com">
<svg class="nav-footer-icon"><use xlink:href="assets/img/icons.svg#icon-love"></use></svg>
</a>
</footer>
</nav>
<main class="content js-content"></main>
<script>
require('./assets/imports')
require('./assets/ex-links')
require('./assets/nav')
require('./assets/code-blocks')
require('./assets/normalize-shortcuts')
</script>
</body>
</html>