forked from gotgit/gotgit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
master.html
62 lines (57 loc) · 2.69 KB
/
master.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>Git权威指南 - {{ page.title }}</title>
{% for style in page.stylesheets %}
<link rel="stylesheet" href="{{ style }}" type="text/css" media="screen" charset="utf-8"/>
{% endfor %}
{% for script in page.javascripts %}
<script src="{{ script }}"></script>
{% endfor %}
<link rel="stylesheet" href="{{ page.relpath }}html/inc/common.css" type="text/css" media="screen" charset="utf-8"/>
<link rel="stylesheet" href="/stylesheets/master.css" type="text/css" media="screen" charset="utf-8"/>
<link rel="stylesheet" href="/stylesheets/syntax.css" type="text/css" media="screen" charset="utf-8"/>
</head>
<body>
<div id='wrapper'>
<div id='header'>
<h1><a href='/'>World Hello</a></h1>
<div id='menu'>
<ul>
<li><a href='/' id='home-link' title='Home'>首页</a></li>
<li><a href='/blog.html' id='blog-link' title='Blog'>博客</a></li>
<li><a href='/doc/' id='docs-link' title='Docs'>文章</a></li>
<li><a href='/about.html' id='about-link' title='About'>关于</a></li>
<li><a href='http://github.com/gotgit' target='_blank' title='GitHub' rel='me' id='github-link'>GitHub</a></li>
<li><a href='http://weibo.com/gotgit' title='微博' target='_blank' id='weibo-link'>微博</a></li>
</ul>
</div>
</div>
<div id='content'>
<div class="home-box" id='gotgit-left'>
<h2>目录</h2>
<div class='sidebar'>
<div class='sidebar-item' id='submenu'>
<ul>
<li><a href="{{ page.relpath }}index.html">关于本书</a>
<li><a href="{{ page.relpath }}bookstore.html">如何购买</a>
<li><a href="{{ page.relpath }}recommends.html">封底推荐</a>
<li><a href="{{ page.relpath }}errata.html">本书勘误</a>
<li><a href="{{ page.relpath }}screencast.html">操作回放</a>
</ul>
</div>
</div>
</div>
<div class="home-box" id='gotgit-right'>
{{ content }}
<div class='clearfix'></div>
</div>
</div>
</div>
<div id='footer'>
Copyright © 2011 Jiang Xin. Hosted by <a href='http://github.com/gotgit/gotgit.github.com/' target='_blank'>GitHub</a> and powered by <a href='http://github.com/mojombo/jekyll'>Jekyll</a>. Templates from <a href='http://github.com/mbleigh/mbleigh.github.com/' target='_blank'>Michael Bleigh</a>.
</div>
</body>
</html>