HTML Boilerplate
Sublime Text 2/3 snippet to generate HTML5 boilerplate
Details
Installs
- Total 122K
- Win 72K
- Mac 33K
- Linux 17K
Feb 6 | Feb 5 | Feb 4 | Feb 3 | Feb 2 | Feb 1 | Jan 31 | Jan 30 | Jan 29 | Jan 28 | Jan 27 | Jan 26 | Jan 25 | Jan 24 | Jan 23 | Jan 22 | Jan 21 | Jan 20 | Jan 19 | Jan 18 | Jan 17 | Jan 16 | Jan 15 | Jan 14 | Jan 13 | Jan 12 | Jan 11 | Jan 10 | Jan 9 | Jan 8 | Jan 7 | Jan 6 | Jan 5 | Jan 4 | Jan 3 | Jan 2 | Jan 1 | Dec 31 | Dec 30 | Dec 29 | Dec 28 | Dec 27 | Dec 26 | Dec 25 | Dec 24 | Dec 23 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 14 | 8 | 4 | 20 | 11 | 10 | 17 | 10 | 10 | 15 | 15 | 8 | 13 | 14 | 10 | 9 | 5 | 9 | 8 | 10 | 15 | 10 | 7 | 10 | 12 | 8 | 11 | 15 | 11 | 4 | 10 | 8 | 10 | 11 | 10 | 14 | 9 | 6 | 5 | 4 | 8 | 6 | 7 | 4 | 10 | 9 |
Mac | 1 | 4 | 4 | 7 | 1 | 3 | 2 | 2 | 1 | 0 | 4 | 2 | 1 | 2 | 4 | 2 | 2 | 1 | 1 | 3 | 2 | 3 | 0 | 1 | 2 | 4 | 3 | 0 | 2 | 1 | 2 | 2 | 1 | 0 | 3 | 0 | 1 | 1 | 2 | 1 | 1 | 2 | 2 | 1 | 0 | 1 |
Linux | 0 | 3 | 2 | 2 | 3 | 3 | 1 | 2 | 3 | 4 | 1 | 1 | 1 | 2 | 4 | 2 | 2 | 2 | 1 | 2 | 0 | 1 | 0 | 1 | 3 | 4 | 1 | 2 | 4 | 0 | 1 | 3 | 2 | 1 | 3 | 1 | 0 | 1 | 1 | 5 | 0 | 2 | 1 | 3 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
Sublime HTML5 Boilerplate
A Sublime Text 2/3 snippet to generate the HTML5 Boilerplate (v6.0.1) template.
Install
Option 1: Manual
Copy the files to your Packages directory.
Option 2: Package Control
In the command pallette (Cmd-Shift+P on Mac) type 'Install' then press enter to see a list of packages. Search for 'HTML Boilerplate' then press enter to install.
Usage
With a blank saved HTML file open, type
htmlboiler
and press TAB
.
That generates:
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>${1}</title>
<meta name="description" content="${2}">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="manifest" href="site.webmanifest">
<link rel="apple-touch-icon" href="icon.png">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<p>Hello world! This is HTML5 Boilerplate.</p>
<script src="js/vendor/modernizr-3.5.0.min.js"></script>
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-3.2.1.min.js"><\/script>')</script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
<script>
window.ga=function(){ga.q.push(arguments)};ga.q=[];ga.l=+new Date;
ga('create','UA-XXXXX-Y','auto');ga('send','pageview')
</script>
<script src="https://www.google-analytics.com/analytics.js" async defer></script>
</body>
</html>