-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbootstraphtml.sublime-snippet
42 lines (39 loc) · 1.02 KB
/
bootstraphtml.sublime-snippet
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
<snippet>
<content><![CDATA[
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Bid</title>
<link rel="stylesheet" href="/assets/css/bootstrap.css">
<style>#page{ margin-top: 40px; }</style>
</head>
<body>
<div id="main">
<!-- Navbar Start -->
<nav class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a href="#" class="brand">Bid</a>
<ul class="nav">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="">Home</a></li>
<li><a href="">Home</a></li>
<li><a href="">Home</a></li>
</ul>
</div>
</div>
</nav><!-- Navbar End -->
<div id="page" class="container">
<h2>${1:Hello World}</h2>
</div>
</div><!-- #main End -->
</body>
</html>
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>bootstraphtml</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<!-- <scope>source.python</scope> -->
</snippet>