This repository has been archived by the owner on Mar 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·164 lines (153 loc) · 6.67 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!DOCTYPE HTML>
<html>
<head>
<title>Vim Bootstrap</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="version" content="{{.Version}}">
<meta name="description" content="" />
<meta name="keywords" content="" />
<link href="http://fonts.googleapis.com/css?family=Roboto:100,100italic,300,300italic,400,400italic" rel="stylesheet" type="text/css" />
<!--[if lte IE 8]><script src="/assets/css/ie/html5shiv.js"></script><![endif]-->
<script src="/assets/js/jquery.min.js"></script>
<script src="/assets/js/skel.min.js"></script>
<script src="/assets/js/init.js"></script>
<script src="/assets/form.js"></script>
<noscript>
<link rel="stylesheet" href="/assets/css/skel-noscript.css" />
<link rel="stylesheet" href="/assets/css/style.css" />
<link rel="stylesheet" href="/assets/css/style-wide.css" />
</noscript>
<!--[if lte IE 8]><link rel="stylesheet" href="/assets/css/ie/v8.css" /><![endif]-->
<!--[if lte IE 9]><link rel="stylesheet" href="/assets/css/ie/v9.css" /><![endif]-->
</head>
<body>
<!-- Header -->
<section id="header" class="dark">
<header>
<h1>Vim Bootstrap</h1>
<p>A generator which provides a simple method of generating a .vimrc configuration for vim</p>
</header>
<footer>
<a href="#first" class="button scrolly">Make your .vimrc now!</a>
</footer>
</section>
<!-- First -->
<section id="first" class="main">
<header>
<div class="container">
<h2>Select your languages</h2>
<p></p>
<form class="clearfix" action="/generate.vim" method="post">
<div class="row">
<div class="12u">
{{ range $lang := .Langs}}
<div class="input-group">
<span class="button-checkbox">
<div class="placeholder">
<img class="logo-icon" data-type="checkbox" data-value="{{$lang}}" src="/assets/images/logo/{{$lang}}.png">
</div>
<p>{{$lang}}</p>
<input type="checkbox" name="langs" value="{{$lang}}" class="hidden" />
</span>
</div>
{{end}}
</div>
</div>
<h3>Select your editor</h3>
<div class="row">
<div class="12u">
<div class="input-group">
<span class="button-checkbox">
<div class="placeholder">
<img class="logo-icon selected" data-type="radio" data-value="vim" src="/assets/images/logo/vim.png">
</div>
<p>vim</p>
<input type="radio" name="editor" value="vim" class="hidden" checked="checked" />
</span>
</div>
<div class="input-group">
<span class="button-checkbox">
<div class="placeholder">
<img class="logo-icon" data-type="radio" data-value="nvim" src="/assets/images/logo/neovim.png">
</div>
<p>neovim</p>
<input type="radio" name="editor" value="nvim" class="hidden" />
</span>
</div>
</div>
</div>
<div class="row">
<div class="12u">
<p>Click in the button to create your .vimrc</p><br>
<ul class="actions">
<li><input type="submit" class="button" value="Generate!"></li>
</ul>
</div>
</div>
</form>
</div>
</header>
<div class="content dark style1 featured">
<div class="container">
<div class="row">
<div class="4u">
<section>
<span class="feature-icon"><span class="fa fa-clock-o"></span></span>
<header>
<h3>Fast Installation</h3>
</header>
<p>Use your generated vimrc file following <a href="https://github.com/avelino/vim-bootstrap#installation">this instructions</a>.</p>
</section>
</div>
<div class="4u">
<section>
<span class="feature-icon"><span class="fa fa-book"></span></span>
<header>
<h3>Learn more about Vim</h3>
</header>
<p>See the <a href="https://github.com/avelino/vim-bootstrap#commands">commands list</a>.</p>
</section>
</div>
<div class="4u">
<section>
<span class="feature-icon"><span class="fa fa-edit"></span></span>
<header>
<h3>Customize your ViM</h3>
</header>
<p>Create a <a href="https://github.com/avelino/vim-bootstrap/blob/master/vim_template/vimrc.local.example">~/.vimrc.local</a> and customize your own configuration.</p>
</section>
</div>
</div>
<div class="row">
<div class="12u">
<footer>
<a href="https://github.com/avelino/vim-bootstrap" class="button">Contribute</a>
<a href="http://www.avelino.xxx/2015/03/church-vim" class="button">Church Vim</a>
</footer>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<section id="footer">
<ul class="icons">
<li><a href="https://github.com/avelino/vim-bootstrap" class="fa fa-github solo"><span>GitHub</span></a></li>
</ul>
<div class="copyright">
<ul class="menu">
<li>© Vim Bootstrap. All rights reserved.</li>
<li><a href="https://github.com/avelino/vim-bootstrap">Vim Bootstrap</a></li>
</ul>
</div>
</section>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-53567832-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>