1
1
<!DOCTYPE html>
2
2
< html lang ="en ">
3
- < head >
4
- < meta charset ="utf-8 ">
5
- < title > {{ site.title }}</ title >
6
- </ head >
7
- < body >
8
- < header >
9
- < h1 > {{ site.title }}</ h1 >
10
- < h2 > {{ site.description }}</ h2 >
11
- </ header >
12
-
13
- < div id ="content ">
14
-
15
- {{ content }}
16
-
17
- </ div >
18
-
3
+ < head >
4
+ < meta charset ="utf-8 ">
5
+ < meta http-equiv ="X-UA-Compatible " content ="IE=edge ">
6
+ < meta name ="viewport " content ="width=device-width, initial-scale=1 ">
7
+ < meta name ="description " content ="Vim's rebirth for the 21st century ">
8
+ < meta name ="author " content ="">
9
+
10
+ <!-- Favicons -->
11
+
12
+ < title > {{ page.title }} · {{ site.title }}</ title >
13
+
14
+ <!-- Bootstrap core CSS -->
15
+ < link href ="bower_components/bootstrap/dist/css/bootstrap.min.css " rel ="stylesheet ">
16
+
17
+ <!-- Neo2 Google Web Font -->
18
+ < link href ='http://fonts.googleapis.com/css?family=Exo+2 ' rel ='stylesheet ' type ='text/css '>
19
+
20
+ <!-- Custom styles for this site -->
21
+ < link href ="css/main.css " rel ="stylesheet ">
22
+
23
+ <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
24
+ <!--[if lt IE 9]>
25
+ <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
26
+ <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
27
+ <![endif]-->
28
+ </ head >
29
+
30
+ < body >
31
+
32
+ <!-- Fixed navbar -->
33
+ < div class ="navbar navbar-default navbar-fixed-top " role ="navigation ">
34
+ < div class ="container ">
35
+ < div class ="navbar-header ">
36
+ < button type ="button " class ="navbar-toggle " data-toggle ="collapse " data-target =".navbar-collapse ">
37
+ < span class ="sr-only "> Toggle navigation</ span >
38
+ < span class ="icon-bar "> </ span >
39
+ < span class ="icon-bar "> </ span >
40
+ < span class ="icon-bar "> </ span >
41
+ </ button >
42
+ < a class ="navbar-brand " href ="/ "> {{ site.title }}</ a >
43
+ </ div >
44
+ < div class ="navbar-collapse collapse ">
45
+ < ul class ="nav navbar-nav ">
46
+ < li > < a href ="#about "> About</ a > </ li >
47
+ < li > < a href ="#contact "> Contact</ a > </ li >
48
+ < li > < a href ="https://www.bountysource.com/fundraisers/539-neovim-first-iteration "> Pledge</ a > </ li >
49
+ < li > < a href ="https://github.com/neovim/neovim "> GitHub</ a > </ li >
50
+ </ ul >
51
+ <!--
52
+ <ul class="nav navbar-nav navbar-right">
53
+ <li><a href="../navbar/">Default</a></li>
54
+ <li><a href="../navbar-static-top/">Static top</a></li>
55
+ <li class="active"><a href="./">Fixed top</a></li>
56
+ </ul>
57
+ -->
58
+ </ div > <!--/.nav-collapse -->
59
+ </ div >
60
+ </ div >
61
+
62
+ < div id ="main " class ="container ">
63
+
64
+
65
+ {{ content }}
66
+
67
+ < footer >
68
+
69
+ </ footer >
70
+
71
+ <!--
72
+ <div class="jumbotron">
73
+ <h1>Navbar example</h1>
74
+ <p>This example is a quick exercise to illustrate how the default, static and fixed to top navbar work. It includes the responsive CSS and HTML, so it also adapts to your viewport and device.</p>
75
+ <p>To see the difference between static and fixed top navbars, just scroll.</p>
76
+ <p>
77
+ <a class="btn btn-lg btn-primary" href="../../components/#navbar" role="button">View navbar docs »</a>
78
+ </p>
79
+ </div>
80
+ -->
81
+
82
+ </ div > <!-- /container -->
83
+
84
+
85
+ <!-- Bootstrap core JavaScript
86
+ ================================================== -->
87
+ <!-- Placed at the end of the document so the pages load faster -->
88
+ < script src ="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js "> </ script >
89
+ < script src ="bower_components/bootstrap/dist/js/bootstrap.min.js "> </ script >
19
90
< script >
20
91
( function ( i , s , o , g , r , a , m ) { i [ 'GoogleAnalyticsObject' ] = r ; i [ r ] = i [ r ] || function ( ) {
21
92
( i [ r ] . q = i [ r ] . q || [ ] ) . push ( arguments ) } , i [ r ] . l = 1 * new Date ( ) ; a = s . createElement ( o ) ,
@@ -25,6 +96,5 @@ <h2>{{ site.description }}</h2>
25
96
ga ( 'create' , 'UA-48317591-1' , 'neovim.org' ) ;
26
97
ga ( 'send' , 'pageview' ) ;
27
98
</ script >
28
-
29
- </ body >
99
+ </ body >
30
100
</ html >
0 commit comments