summaryrefslogtreecommitdiff
path: root/_layouts/default.html
blob: 9dc7906c29955f69bcdc77c9b9df09f8bb11f274 (plain)
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
---
sidebar_cats:
- bootcamp
- 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="/shared/css/documentation.css" media="screen" rel="stylesheet" type="text/css">
    <link href="/shared/css/pygments.css" media="screen" rel="stylesheet" type="text/css">
    <link rel="stylesheet" href="/css/style.css" type="text/css" media="screen">
    <link rel="stylesheet" href="/css/print.css" type="text/css" media="print">
    <script src="/shared/js/jquery.js" type="text/javascript"></script>
    <script src="/shared/js/documentation.js" type="text/javascript"></script>
    <script src="/js/help.js" type="text/javascript"></script>
  </head>

  <body class="documentation">
    <div id="not-footer">
    <div id="header-wrapper">
      <div id="header">
        <div>
          <a class="logo" href="/"><img src="/images/logo.png" /></a>
          <ul class="nav">
            <li><a href="http://gitref.org/">Git Reference</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><!-- #header -->
    </div><!-- #header-wrapper -->

    <div id="wrapper">

      <div class="content">
        <h1>{{ page.title }}</h1>
        {{ content }}
      </div>

      <div id="js-help-sidebar" class="sidebar-shell">
        <div class="sidebar-module">
          <ul>
            {% for cat in (page.sidebar_cats) %}
            <li class="js-topic">
              <h3><a href="#">{{ cat | replace:'_',' ' | capitalize }}</a></h3>
              <ul class="js-guides">
                {% for post in site.posts reversed %}{% if post.categories contains cat %}
                  {% if page.title == post.title %}
                    <li class="disable"><span>{{ page.title }}</span></li>
                  {% else %}
                    <li><a href="{{ post.url }}">{{ post.title }}</a></li>
                  {% endif %}
                {% endif %}{% endfor %}
              </ul>
            </li>
            {% endfor %}
          </ul>
        </div> <!-- /sidebar-module -->
        <div class="sidebar-module">
          <p>This website is <a href="http://github.com/github/help.github.com#readme" target="_blank">open source</a>. Please help us by forking the project and adding to it.</p>
        </div>
      </div><!-- /sidebar-shell -->

    </div><!-- #wrapper -->

  </div><!-- /not-footer -->
  <div id="footer-wrapper">
    <div id="footer">
      <div class="left-col">
        <h2 class="logo"><a href="http://github.com">Brought to you by GitHub</a></h2>
        <ul class="github-nav">
          <li><a href="http://github.com/blog" class="blog">The GitHub Blog</a></li>
          <li><a href="http://support.github.com">Support</a></li>
          <li><a href="http://github.com/contact">Contact</a></li>
          <li><a href="/api">API</a></li>
        </ul>
        <p class="copyline">© 2011 GitHub Inc. All rights reserved</p>
      </div>
      <div class="right-col">
        <p class="rackspace">Powered by the <a href="http://rackspace.com" target="_blank">Dedicated Servers</a> and <a href="http://rackspacecloud.com" target="_blank">Cloud Computing</a> of Rackspace Hosting®</p>
      </div>
    </div><!-- #footer -->
  </div><!-- #footer-wrapper -->

  </body>
</html>