-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
147 lines (91 loc) · 3.72 KB
/
index.html
File metadata and controls
147 lines (91 loc) · 3.72 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" >
<title>Gridea</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
<link rel="shortcut icon" href="https://chencxt.github.io//favicon.ico?v=1595066481856">
<link rel="stylesheet" href="https://chencxt.github.io//styles/main.css">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<meta name="description" content="木叶飞舞之处,火亦生生不息
欢迎来到Overload过载的个人博客">
</head>
<body>
<div id="app" class="main">
<div class="sidebar" :class="{ 'full-height': menuVisible }">
<div class="top-container" data-aos="fade-right">
<div class="top-header-container">
<a class="site-title-container" href="https://chencxt.github.io/">
<img src="https://chencxt.github.io//images/avatar.png?v=1595066481856" class="site-logo">
<h1 class="site-title">Gridea</h1>
</a>
<div class="menu-btn" @click="menuVisible = !menuVisible">
<div class="line"></div>
</div>
</div>
<div>
<a href="/" class="site-nav">
首页
</a>
<a href="/archives" class="site-nav">
归档
</a>
<a href="/tags" class="site-nav">
标签
</a>
<a href="/post/about" class="site-nav">
关于
</a>
</div>
</div>
<div class="bottom-container" data-aos="flip-up" data-aos-offset="0">
<div class="social-container">
</div>
<div class="site-description">
木叶飞舞之处,火亦生生不息
欢迎来到Overload过载的个人博客
</div>
<div class="site-footer">
Powered by <a href="https://github.com/getgridea/gridea" target="_blank">Gridea</a> | <a class="rss" href="https://chencxt.github.io//atom.xml" target="_blank">RSS</a>
</div>
</div>
</div>
<div class="main-container">
<div class="content-container" data-aos="fade-up">
<article class="post-item">
<div class="left">
<a href="https://chencxt.github.io/post/hello-gridea/">
<h2 class="post-title">Hello Gridea</h2>
</a>
<div class="post-date">
2018-12-12
</div>
<div class="post-abstract">
<p>👏 欢迎使用 <strong>Gridea</strong> !<br>
✍️ <strong>Gridea</strong> 一个静态博客写作客户端。你可以用它来记录你的生活、心情、知识、笔记、创意... ...</p>
</div>
</div>
<a class="right" href="https://chencxt.github.io/post/hello-gridea/">
<div class="feature-container" style="background-image: url('https://chencxt.github.io//post-images/hello-gridea.png')">
</div>
</a>
</article>
<div class="pagination-container">
</div>
</div>
</div>
</div>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script type="application/javascript">
AOS.init();
var app = new Vue({
el: '#app',
data: {
menuVisible: false,
},
})
</script>
</body>
</html>