-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharchives.html
More file actions
140 lines (104 loc) · 4.63 KB
/
archives.html
File metadata and controls
140 lines (104 loc) · 4.63 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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta charset="utf-8"/>
<title>从心所欲: Archives</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href='http://fonts.googleapis.com/css?family=Alegreya:400italic,700italic,400,700' rel='stylesheet'
type='text/css'>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.1/styles/default.min.css">
<link href="css/screen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<nav class="navbar navbar-default">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/index.html">从心所欲</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li ><a href="/index.html">Home</a></li>
<li
class="active" ><a href="/archives.html">Archives</a></li>
<li
>
<a href="/pages/about.html">About</a>
</li>
<li><a href="/feed.xml">RSS</a></li>
</ul>
</div><!--/.nav-collapse -->
</div><!--/.container-fluid -->
</nav>
<div class="container">
<div class="row">
<div class="col-lg-9">
<div id="content">
<div id="posts">
<div id="page-header">
<h2>Archives</h2>
</div>
<h4>2016 一月</h4>
<ul>
<li>
一月 07 - <a href="/posts/2016-01-07-docs.html">Quick Start Guide</a>
</li>
</ul>
<h4>2014 十一月</h4>
<ul>
<li>
十一月 04 - <a href="/posts/2014-11-04-second-post.html">Yet Another Post</a>
</li>
</ul>
<h4>2014 三月</h4>
<ul>
<li>
三月 10 - <a href="/posts/2014-03-10-first-post.html">A Post</a>
</li>
</ul>
</div>
</div>
</div>
<div class="col-md-3">
<div id="sidebar">
<h3>Links</h3>
<ul id="links">
<li><a href="http://cryogenweb.org/docs/home.html">Cryogen Docs</a></li>
<li><a href="http://carmenla.me/blog/index.html">Carmen's Blog</a></li>
<li><a href="/pages/another-page.html">Another Page</a></li>
</ul>
<div id="recent">
<h3>Recent Posts</h3>
<ul>
<li><a href="/posts/2016-01-07-docs.html">Quick Start Guide</a></li>
<li><a href="/posts/2014-11-04-second-post.html">Yet Another Post</a></li>
<li><a href="/posts/2014-03-10-first-post.html">A Post</a></li>
</ul>
</div>
<div id="tags">
<h3>Tags</h3>
<ul>
<li><a href="/tags/cryogen.html">cryogen</a></li>
<li><a href="/tags/very fetch.html">very fetch</a></li>
<li><a href="/tags/not fetch.html">not fetch</a></li>
</ul>
</div>
</div>
</div>
</div>
<footer>Copyright © David
<p style="text-align: center;">Powered by <a href="http://cryogenweb.org">Cryogen</a></p></footer>
</div>
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="js/highlight.pack.js" type="text/javascript"></script>
<script>hljs.initHighlightingOnLoad();</script>
</body>
</html>