|
1 | 1 | # Sublime HTML5 Boilerplate
|
2 | 2 |
|
3 |
| -A Sublime Text 2/3 snippet to generate the HTML5 Boilerplate (v5.3.0) template. |
| 3 | +A Sublime Text 2/3 snippet to generate the HTML5 Boilerplate (v6.0.1) template. |
4 | 4 |
|
5 | 5 | ## Install
|
6 | 6 |
|
@@ -30,24 +30,26 @@ That generates:
|
30 | 30 | <title>${1}</title>
|
31 | 31 | <meta name="description" content="${2}">
|
32 | 32 | <meta name="viewport" content="width=device-width, initial-scale=1">
|
33 |
| - |
34 |
| - <!-- Place favicon.ico and apple-touch-icon.png in the root directory --> |
35 |
| - <link rel="apple-touch-icon" href="apple-touch-icon.png"> |
36 |
| - |
37 |
| - <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/4.2.0/normalize.min.css"> |
38 |
| - <script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.min.js"></script> |
39 |
| - <!--<link rel="stylesheet" href="css/main.css"> --> |
40 |
| - </head> |
| 33 | + |
| 34 | + <link rel="manifest" href="site.webmanifest"> |
| 35 | + <link rel="apple-touch-icon" href="icon.png"> |
| 36 | + <!-- Place favicon.ico in the root directory --> |
| 37 | + |
| 38 | + <link rel="stylesheet" href="css/normalize.css"> |
| 39 | + <link rel="stylesheet" href="css/main.css"> |
| 40 | + </head> |
41 | 41 | <body>
|
42 |
| - <!--[if lt IE 8]> |
43 |
| - <p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p> |
| 42 | + <!--[if lte IE 9]> |
| 43 | + <p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade your browser</a> to improve your experience and security.</p> |
44 | 44 | <![endif]-->
|
45 | 45 |
|
46 | 46 | <!-- Add your site or application content here -->
|
47 | 47 | <p>Hello world! This is HTML5 Boilerplate.</p>
|
48 |
| - |
49 |
| - <script src="http://code.jquery.com/jquery-1.12.4.min.js"></script> |
50 |
| - <script>window.jQuery || document.write('<script src="js/vendor/jquery-1.12.4.min.js"><\/script>')</script> |
| 48 | + <script src="js/vendor/modernizr-3.5.0.min.js"></script> |
| 49 | + <script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script> |
| 50 | + <script>window.jQuery || document.write('<script src="js/vendor/jquery-3.2.1.min.js"><\/script>')</script> |
| 51 | + <script src="js/plugins.js"></script> |
| 52 | + <script src="js/main.js"></script> |
51 | 53 |
|
52 | 54 | <!-- Google Analytics: change UA-XXXXX-Y to be your site's ID. -->
|
53 | 55 | <script>
|
|
0 commit comments