-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchive.html
executable file
·113 lines (103 loc) · 4.42 KB
/
archive.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
<!DOCTYPE html>
<html lang="zh_cn">
<head>
<meta charset="utf-8">
<meta name="description" content="made from LiFan by Nikola">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>文章归档 | 不想下雨的夏天</title>
<link href="assets/css/all-nocdn.css" rel="stylesheet" type="text/css">
<link rel="alternate" type="application/rss+xml" title="RSS" href="rss.xml">
<link rel="canonical" href="http://vgoah10.github.io/blog/archive.html">
<!--[if lt IE 9]>
<script src="assets/js/html5shiv.min.js"></script>
<script src="assets/js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<a href="#content" class="sr-only sr-only-focusable">跳到主内容</a>
<!-- Menubar -->
<nav class="navbar header-panel shadow-z-3" role="navigation"><div class="container-fluid">
<div class="row">
<div class="col-xs-3">
<h1 class="title-blog">
<a href="http://vgoah10.github.io/blog/">
<span id="blog-title">不想下雨的夏天</span>
</a>
</h1>
</div>
<div class="col-xs-9">
<a id="hamburger" class="btn btn-raised" href="javascript:void(0);" onclick="menuToggle();">☰</a>
</div>
</div>
</div>
<!-- /.container-fluid -->
</nav><div class="container-fluid main" id="content" role="main">
<div class="row">
<nav class="col-xs-12 col-sm-3 menu"><ul>
<li class="withripple active"><a href="#">文章归档</a></li>
<li class="withripple"><a href="categories/">标签</a></li>
<li class="withripple"><a href="rss.xml">RSS 源</a></li>
</ul>
<ul></ul></nav><div class="posts-material col-xs-12 col-sm-9">
<div class="col-xs-12 col-md-11 content-material">
<article class="listpage"><header><h1>文章归档</h1>
<hr></header><ul class="postlist"><li>
<a href="2020/"><i class="mdi-action-done"></i>2020</a>
(2)
</li></ul></article>
</div>
</div>
</div>
<button class="btn btn-fab btn-raised btn-material-green btn-footer" data-toggle="modal" data-target="#footer-dialog">
<i class="mdi-communication-message"></i>
</button>
<div id="footer-dialog" class="modal fade" tabindex="-1">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title">不想下雨的夏天 credits</h4>
</div>
<div class="modal-body">
Contents © 2020 <a href="mailto:[email protected]">LiFan</a> - Powered by <a href="https://getnikola.com" rel="nofollow">Nikola</a>
</div>
<div class="modal-footer">
<button class="btn btn-primary" data-dismiss="modal">Ok</button>
</div>
</div>
</div>
</div>
<div class="source-button">
</div>
</div>
<script src="assets/js/all-nocdn.js"></script><script>
$(document).ready(function() {
// This command is used to initialize some elements and make them work properly
$.material.init();
});
$(window).on("resize", function() {
if($(window).width() > 767) {
$("html, body").height($(window).height());
$(".main, .menu").height($(window).height() - $(".header-panel").outerHeight() - 76 );
$(".posts-material").height($(window).height());
} else {
$("html, body").css('height', '');
$(".main, .menu").css('height', '');
$(".posts-material").css('height', '');
}
}).trigger("resize");
function menuToggle() {
$("nav.menu, ul").toggleClass('responsive', '');
}
</script><!-- fancy dates --><script>
moment.locale("zh-cn");
fancydates(0, "YYYY-MM-DD HH:mm");
</script><!-- end fancy dates --><script>
baguetteBox.run('div#content', {
ignoreClass: 'islink',
captions: function(element) {
return element.getElementsByTagName('img')[0].alt;
}});
</script>
</body>
</html>