-
Notifications
You must be signed in to change notification settings - Fork 173
/
Copy pathdefault.html
43 lines (43 loc) · 1.9 KB
/
default.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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="author" content="{{ site.author }}" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
{% if page.title %}
<title>{{ page.title }}</title>
{% else %}
<title>{{ site.name }}</title>
{% endif %}
<link rel="shortcut icon" href="/favicon.ico">
<link href="/atom.xml" rel="alternate" title="{{ site.name }}" type="application/atom+xml" />
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link rel="stylesheet" href="/media/css/style.css">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.4/styles/github.min.css">
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.4/highlight.min.js"></script>
<script type="text/javascript"> hljs.initHighlightingOnLoad(); </script>
</head>
<body>
<div id="main" role="main">
<header>
<div id="header">
<h1><a title="{{ site.name }}" class="" href="/">{{ site.name }}</a></h1>
</div>
<nav>
{% for nav in site.navigations %}
<span><a title="{{ nav.title }}" href="{{ nav.href }}"><i class="{{ nav.class }}"></i></a></span>
{% endfor %}
</nav>
</header>
<div id="content">
{{ content }}
</div>
<footer>
<div>
{% assign first_post = site.posts | last %}
© {{ first_post.date | date: "%Y" }} ~ {{ site.time | date: "%Y" }} {{ site.author }} | powered by jekyll | themed by <a href="http://lhzhang.com" title="sext vi">sext vi</a> | fork <a href="https://github.com/waynezhang/blog" title="fork me">me</a>
</div>
</footer>
</div> <!-- main -->
</body>
</html>