-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
112 lines (106 loc) · 3.97 KB
/
index.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
---
sidebar_cats:
- bootcamp
- setup
- troubleshooting
- repos
- collaborating
- everyday_git
- git_ninjutsu
- deploying
- mac
- windows
- linux
- other
- site_policy
---
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Help.GitHub - {{ page.title }}</title>
<link href="http://github.com/stylesheets/bundle_common.css" media="screen" rel="stylesheet" type="text/css" />
<link href="http://github.com/stylesheets/bundle_github.css" media="screen" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="/css/style.css" type="text/css" media="screen" charset="utf-8"/>
<link rel="stylesheet" href="/css/print.css" type="text/css" media="print">
<script src="/js/jquery-1.js" type="text/javascript"></script>
<script src="/js/help.js" type="text/javascript"></script>
</head>
<body>
{% if page.main_category %}
<script type="text/javascript">var main_category = "{{ page.main_category }}"</script>
{% else %}
{% if page.categories %}
<script type="text/javascript">var main_category = "{{ page.categories }}"</script>
{% endif %}
{% endif %}
<div id="main">
<div id="header" class="basic">
<div class="site">
<div class="logo boring">
<a href="/"><img src="/images/help.github.png" alt="github learn logo" /></a>
</div>
<div class="topsearch">
<ul class="nav logged_out">
<li><a href="http://gitref.org/">Git Reference</a></li>
<li><a href="http://github.com/github/help.github.com#readme">Contribute</a></li>
<li><a href="http://support.github.com/">Support</a></li>
<li><a href="http://github.com/">Back to GitHub</a></li>
</ul>
</div>
</div>
</div>
<div id="content" class="site">
<div id="guides">
<div class="guide">
<div class="main">
<h1>{{ page.title }}</h1>
<div class="wikistyle">
{{ content }}
</div>
</div>
<div class="sidebar">
{% for cat in (page.sidebar_cats) %}
<h3>{{ cat | replace:'_',' ' | capitalize }}</h3>
<ul id="categories">
{% for post in site.posts reversed %}{% if post.categories contains cat %}
{% if page.title == post.title %}
<li>{{ page.title }}</li>
{% else %}
<li><a href="{{ post.url }}" id="{{ cat }}">{{ post.title }}</a></li>
{% endif %}
{% endif %}{% endfor %}
</ul>
{% endfor %}
</div>
</div>
</div>
</div>
<div class="push"></div>
</div>
<div id="footer">
<div class="site">
<div class="info">
<div class="links">
<a href="http://github.com/blog"><b>Blog</b></a> |
<a href="http://support.github.com/">Support</a> |
<a href="http://github.com/training">Training</a> |
<a href="http://github.com/contact">Contact</a> |
<a href="http://develop.github.com">API</a> |
<a href="http://status.github.com">Status</a> |
<a href="http://twitter.com/github">Twitter</a> |
<a href="http://gitref.org">Learn</a> |
<a href="http://github.com/security">Security</a>
</div>
<div class="company">
©
{{ site.time | date: "%Y" }}
GitHub Inc.
All rights reserved.
| <a href="http://github.com/site/terms">Terms of Service</a> | <a href="http://github.com/site/privacy">Privacy Policy</a>
</div>
</div>
</div>
</div>
</body>
</html>