-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
46 lines (43 loc) · 2 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" href="./vendor/favicon.ico" type="image/x-icon">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta http-equiv="Cache-control" content="no-cache">
<meta http-equiv="Expires" content="0">
<title>TERRILLTANG'S BLOG</title>
<link prefetch href="https://fonts.googleapis.com/css?family=Ubuntu+Mono|Oxygen" rel="stylesheet">
<link rel="stylesheet" href="./vendor/style.css">
</head>
<body>
<main>
<aside v-bind:class='{show:showMenu}'>
<h1>Article Links</h1>
<router-link to="/[译] Angular 路由动画教程.html">[译] Angular 路由动画教程</router-link>
<router-link to="/[译] 在 Angular 中使用 HammerJS (触摸手势).html">[译] 在 Angular 中使用 HammerJS (触摸手势)</router-link>
<router-link to="/[译] Angular 注册和登录教程示例.html">[译] Angular 注册和登录教程示例</router-link>
<router-link to="/[笔记] 关于 Object 对象三个属性.html">[笔记] 关于 Object 对象三个属性 </router-link>
<router-link to="/[笔记] 深入理解 JavaScript Array.sort().html">[笔记] 深入理解 JavaScript Array.sort()</router-link>
</aside>
<section>
<nav>
<a href="#" @click='toggleMenu($event)'>Menu</a>
<router-link to="/">Home</router-link>
<router-link to="/about">About me</router-link>
<a href="https://github.com/terrilltang/terrilltang.github.io">Contact</a>
</nav>
<router-view></router-view>
</section>
</main>
</body>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="https://unpkg.com/vue/dist/vue.min.js"></script>
<script src="https://unpkg.com/vue-router/dist/vue-router.js"></script>
<script src="./vendor/highlight.pack.js"></script>
<script>
axios.defaults.headers.common['cache-control']='no-cache';
</script>
<script src="./vendor/app.js"></script>
</html>