File tree Expand file tree Collapse file tree 6 files changed +88
-0
lines changed
Expand file tree Collapse file tree 6 files changed +88
-0
lines changed Original file line number Diff line number Diff line change 1+ /_site
Original file line number Diff line number Diff line change 1+ name : Git Developer Pages
2+ markdown : redcarpet
Original file line number Diff line number Diff line change 1+ < div class ="navbar ">
2+ < ul >
3+ < li > < a href ="/ "> Home</ a >
4+ {% for node in site.pages %}
5+ {% if node.navbar != false %}
6+ < li > < a href ="{{node.url}} "> {{node.title}}</ a >
7+ {% endif %}
8+ {% endfor %}
9+ </ ul >
10+ </ div >
Original file line number Diff line number Diff line change 1+ <!DOCTYPE html>
2+ < html >
3+ < head >
4+ < meta charset ="utf-8 ">
5+ < meta http-equiv ="X-UA-Compatible " content ="IE=edge,chrome=1 ">
6+ < title > {{ page.title }}</ title >
7+ < meta name ="viewport " content ="width=device-width ">
8+ < link rel ="stylesheet " href ="/css/main.css ">
9+ </ head >
10+
11+ < body >
12+
13+ {% include navbar.html %}
14+
15+ < div class ="site ">
16+ < div class ="header ">
17+ <!-- nothing yet -->
18+ </ div >
19+
20+ {{ content }}
21+
22+ < div class ="footer ">
23+ <!-- nothing yet -->
24+ </ div >
25+ </ div >
26+
27+ </ body >
28+ </ html >
Original file line number Diff line number Diff line change 1+ body {
2+ background-color : # 333333 ;
3+ font-family : sans-serif;
4+ }
5+
6+ .site {
7+ text-align : left;
8+ width : 42em ;
9+ margin : 0 auto;
10+ padding : 0 2em 0 2em ;
11+ border : solid black 1px ;
12+ background-color : # cccccc ;
13+ float : left;
14+ }
15+
16+ .navbar {
17+ float : left;
18+ text-align : left;
19+ width : 20em ;
20+ margin-right : 10px ;
21+ border : solid black 1px ;
22+ background-color : # cccccc ;
23+ }
Original file line number Diff line number Diff line change 1+ ---
2+ layout : default
3+ title : Git Developer Pages
4+ navbar : false
5+ ---
6+
7+ # {{ page.title }}
8+
9+ This is a tentative homepage for information on Git development. If you
10+ stumbled into this by mistake, you may want:
11+
12+ - < http://git-scm.com > , which has information on running
13+ git and links to download the latest version
14+
15+ - < http://git.wiki.kernel.org > , the wiki that has historically
16+ contained developer information
17+
18+ These pages are intended to collect information useful to Git
19+ developers, including collaborative editing of documents (i.e., it is an
20+ alternative to us having a wiki, but one that is edited entirely via git
21+ pushes).
22+
23+ Note that this page is an experiment and a work in progress. It may go
24+ away at any time if it turns out not to be useful.
You can’t perform that action at this time.
0 commit comments