|
@@ -0,0 +1,40 @@
|
|
|
|
|
+## starters
|
|
|
|
|
+# html
|
|
|
|
|
+snippet html
|
|
|
|
|
+<!DOCTYPE html>
|
|
|
|
|
+<html lang="${1:en}">
|
|
|
|
|
+ <head>
|
|
|
|
|
+ <meta charset="utf-8">
|
|
|
|
|
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
|
+ <meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
+
|
|
|
|
|
+ <title>${2:Hello, World}</title>
|
|
|
|
|
+ </head>
|
|
|
|
|
+ <body>
|
|
|
|
|
+ ${0}
|
|
|
|
|
+ </body>
|
|
|
|
|
+</html>
|
|
|
|
|
+endsnippet
|
|
|
|
|
+
|
|
|
|
|
+# html-bootstrap
|
|
|
|
|
+snippet htmlb
|
|
|
|
|
+<!DOCTYPE html>
|
|
|
|
|
+<html lang="${1:en}">
|
|
|
|
|
+ <head>
|
|
|
|
|
+ <meta charset="utf-8">
|
|
|
|
|
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
|
+ <meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
+
|
|
|
|
|
+ <title>${2:Hello, World}</title>
|
|
|
|
|
+
|
|
|
|
|
+ <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet">
|
|
|
|
|
+ </head>
|
|
|
|
|
+ <body>
|
|
|
|
|
+ <div class="container">
|
|
|
|
|
+ ${0}
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
|
|
|
|
|
+ <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
|
|
|
|
|
+ </body>
|
|
|
|
|
+</html>
|
|
|
|
|
+endsnippet
|