forked from deepure/fblog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.html
More file actions
60 lines (59 loc) · 2.4 KB
/
Copy pathbase.html
File metadata and controls
60 lines (59 loc) · 2.4 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
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<link rel='alternate' type='application/rss+xml' title='atom 1.0' href='/feed' />
<title>{% block title %} {% endblock %}</title>
<meta name="viewport" content="width=device-width; initial-scale=1; maximum-scale=1">
<meta name="keywords" content="{{ site.configs.keywords }}" />
<meta name="description" content="{{ site.raw_content }}" />
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link rel="stylesheet" href="/t/stylesheets/screen.css?version={{ resource_version }}" media="all">
<!--[if IE]>
<link href="/t/stylesheets/ie.css?version={{ resource_version }}" media="screen, projection" rel="stylesheet" type="text/css" />
<![endif]-->
<!--[if IE 7]>
<link href="/t/stylesheets/font-awesome-ie7.min.css.css?version={{ resource_version }}" media="screen, projection" rel="stylesheet" type="text/css" />
<![endif]-->
</head>
<body>
<div id="wrap">
<header id="header" class="cf">
<div class="logo">
<a href="/">{{ site.configs.title or site.title}}</a>
</div>
{% if has('posts') %}
<nav class="main-nav">
<ul class="menu">
<li>
<a href="/" {% block nav_index%} {% endblock %}>Home</a>
</li>
<li>
<a href="/archive" {% block nav_archive %} {% endblock %}>Archive</a>
</li>
{% if has('images') %}
<li>
<a href="/folder/" {% block nav_folder %} {% endblock %}>Photos</a>
</li>
{% endif %}
<li>
<a href="/pages/links" {% if request.path == '/pages/links' %}class="current"{% endif %}>Links</a>
</li>
<li>
<a href="/pages/about" {% if request.path == '/pages/about' %}class="current"{% endif %}>About</a>
</li>
</ul>
</nav>
{% endif %}
</header>
<div id="main" class="cf">
{% block content %}
{% endblock %}
</div>
{% include 'include/footer.html' %}
</div>
{{ site.configs.scripts_for_post }}
</body>
</html>