-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patharchives.html
138 lines (134 loc) · 4.4 KB
/
archives.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Archive — 網路福利社</title>
<meta name="description" content="The archives page, find old stuff organized by date.">
<meta name="author" content="wdv4758h">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
<!--[if lt IE 9]>
<script src="/theme/html5.js"></script>
<![endif]-->
<link href="/theme/css/ipython.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/bootswatch/3.2.0/simplex/bootstrap.min.css" rel="stylesheet">
<link href="/theme/css/local.css" rel="stylesheet">
<link href="/theme/css/pygments.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="page-header">
<h1><a href="/">網路福利社</a>
<br><small>Open Source, Open Your Mind</small></h1>
</div>
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1>Archives</h1>
<table class="table">
<tbody>
<tr>
<td>14 Oct 2014</td>
<td><a href='/posts/2014/10/2014-10-13-share/'>2014-10-13 分享紀錄</a></td>
</tr>
<tr>
<td>09 Oct 2014</td>
<td><a href='/posts/2014/10/2014-10-06-kano/'>2014-10-06 ruinland's kano 開箱</a></td>
</tr>
<tr>
<td>29 Sep 2014</td>
<td><a href='/posts/2014/09/2014-09-29-share/'>2014-09-29 分享紀錄</a></td>
</tr>
<tr>
<td>22 Sep 2014</td>
<td><a href='/posts/2014/09/2014-share/'>2014-09-22 分享紀錄</a></td>
</tr>
<tr>
<td>12 Sep 2014</td>
<td><a href='/posts/2014/09/fiber-back/'>回來啦 ~ 光纖</a></td>
</tr>
<tr>
<td>10 Sep 2014</td>
<td><a href='/posts/2014/09/2014-new-start/'>迎新茶會</a></td>
</tr>
<tr>
<td>10 Sep 2014</td>
<td><a href='/posts/2014/09/open-source/'>Open Source, Open Your Mind</a></td>
</tr>
<tr>
<td>10 Sep 2014</td>
<td><a href='/posts/2014/09/2013-course/'>2013 社課課綱 (回顧)</a></td>
</tr>
<tr>
<td>10 Sep 2014</td>
<td><a href='/posts/2014/09/fiber/'>逝去的光纖</a></td>
</tr>
</tbody>
</table>
</div>
</div> <!-- <hr> -->
</div> <!-- /container -->
<footer class="aw-footer bg-danger">
<div class="container"> <!-- footer -->
<div class="row">
<div class="col-md-10 col-md-offset-1">
<div class="row">
<div class="col-md-3">
<h4>Navigation</h4>
<ul class="list-unstyled my-list-style">
<li><a href="">網路福利社</a></li>
<li><a href="/feeds/all.rss.xml"><i class="fa fa-rss "></i> rss</a></li>
</ul>
</div>
<div class="col-md-3">
<h4>Author</h4>
<ul class="list-unstyled my-list-style">
<li><a href="https://nctu-nba.github.io">Homepage</a></li>
<li><a href="https://github.com/NCTU-NBA">Github</a></li>
<li><a href="https://www.facebook.com/groups/169489583068057/">Facebook</a></li>
<li><a href="https://groups.google.com/forum/#!forum/nctu_nba">Google Groups</a></li>
</ul>
</div>
<div class="col-md-3">
<h4>Categories</h4>
<ul class="list-unstyled my-list-style">
<li><a href="/category/misc.html">Misc (9)</a></li>
</ul>
</div>
<div class="col-md-3">
<h4>Links</h4>
<ul class="list-unstyled my-list-style">
</ul>
</div>
</div>
</div>
</div>
</div>
</footer>
<div class="container">
<div class="row">
<div class="col-md-12 text-center center-block aw-bottom">
<p>© wdv4758h 2014</p>
<p>Powered by Pelican</p>
</div>
</div>
</div>
<!-- JavaScript -->
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script type="text/javascript">
jQuery(document).ready(function($) {
$("div.collapseheader").click(function () {
$header = $(this).children("span").first();
$codearea = $(this).children(".input_area");
$codearea.slideToggle(500, function () {
$header.text(function () {
return $codearea.is(":visible") ? "Collapse Code" : "Expand Code";
});
});
});
});
</script>
</body>
</html>