Skip to content

Commit 70eeede

Browse files
committed
Merge pull request neovim#8 from neovim/adding-some-style
Adding some style
2 parents d22a3e7 + ae1b4e9 commit 70eeede

File tree

178 files changed

+38398
-19
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

178 files changed

+38398
-19
lines changed

_layouts/default.html

Lines changed: 88 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,92 @@
11
<!DOCTYPE html>
22
<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 }} &middot; {{ 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 &raquo;</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>
1990
<script>
2091
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
2192
(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>
2596
ga('create', 'UA-48317591-1', 'neovim.org');
2697
ga('send', 'pageview');
2798
</script>
28-
29-
</body>
99+
</body>
30100
</html>

bower.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"name": "neovim.github.io",
3+
"version": "0.0.0",
4+
"homepage": "neovim.org",
5+
"authors": [
6+
"jbranchaud <jbranchaud@gmail.com>",
7+
"cweagans <cweagans@gmail.com>"
8+
],
9+
"description": "neovim's website",
10+
"main": "index.html",
11+
"keywords": [
12+
"vim"
13+
],
14+
"license": "MIT",
15+
"private": true,
16+
"ignore": [
17+
"**/.*",
18+
"node_modules",
19+
"bower_components",
20+
"test",
21+
"tests"
22+
],
23+
"dependencies": {
24+
"normalize": "http://necolas.github.io/normalize.css/3.0.0/normalize.css",
25+
"bootstrap": "~3.1.1"
26+
}
27+
}
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"name": "bootstrap",
3+
"version": "3.1.1",
4+
"main": [
5+
"./dist/css/bootstrap.css",
6+
"./dist/js/bootstrap.js",
7+
"./dist/fonts/glyphicons-halflings-regular.eot",
8+
"./dist/fonts/glyphicons-halflings-regular.svg",
9+
"./dist/fonts/glyphicons-halflings-regular.ttf",
10+
"./dist/fonts/glyphicons-halflings-regular.woff"
11+
],
12+
"ignore": [
13+
"**/.*",
14+
"_config.yml",
15+
"CNAME",
16+
"composer.json",
17+
"CONTRIBUTING.md",
18+
"docs",
19+
"js/tests"
20+
],
21+
"dependencies": {
22+
"jquery": ">= 1.9.0"
23+
},
24+
"homepage": "https://github.com/twbs/bootstrap",
25+
"_release": "3.1.1",
26+
"_resolution": {
27+
"type": "version",
28+
"tag": "v3.1.1",
29+
"commit": "a365d8689c3f3cee7f1acf86b61270ecca8e106d"
30+
},
31+
"_source": "git://github.com/twbs/bootstrap.git",
32+
"_target": "~3.1.1",
33+
"_originalSource": "bootstrap",
34+
"_direct": true
35+
}

0 commit comments

Comments
 (0)