-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtml5.sublime-snippet
42 lines (34 loc) · 1.06 KB
/
html5.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>${1:HTML5 Project}</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- Le styles -->
<link href="/static/css/bootstrap.css" rel="stylesheet">
<link href="/static/css/custom.css" rel="stylesheet">
<style type="text/css">
body {
/* cutom css */
}
</style>
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Le fav and touch icons -->
<link rel="shortcut icon" href="/static/favicon.ico">
</head>
<body>
<div class="container">
</div><!-- /container -->
<!-- Le javascript -->
<script src="/static/js/application.js"></script>
</body>
</html>]]></content>
<tabTrigger>html5</tabTrigger>
<description>extended html5</description>
</snippet>