Skip to content

Instantly share code, notes, and snippets.

@illycz
Created April 22, 2014 21:18

Revisions

  1. Hayden Bleasel revised this gist Apr 13, 2014. 1 changed file with 0 additions and 1 deletion.
    1 change: 0 additions & 1 deletion boilerplate.haml
    Original file line number Diff line number Diff line change
    @@ -58,6 +58,5 @@
    / jQuery from Google's CDN with local fallback.
    %script{src: "//ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"}
    :javascript
    (window.jQuery)||document.write('<script src="assets/js/jquery.js"><\/script>')
  2. Hayden Bleasel revised this gist Apr 13, 2014. 1 changed file with 63 additions and 0 deletions.
    63 changes: 63 additions & 0 deletions boilerplate.haml
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,63 @@
    / HTML5 Doctype. Remember to delete these comments (Quirks Mode).
    !!!

    / Modernizr HTML tag.
    %html.no-js{lang: ""}

    / Let's get started.
    %head

    / Document settings and metadata.
    %title
    %meta{charset: ""}
    %meta{content: "", name: "description"}
    %meta{content: "", name: "author"}
    %meta{content: "", name: "designer"}
    %meta{content: "", name: "rating"}
    %meta{content: "", name: "keywords"}

    / Apple stuff.
    %meta{content: "yes", name: "apple-mobile-web-app-capable"}
    %meta{content: "black", name: "apple-mobile-web-app-status-bar-style"}
    %meta{content: "telephone=yes", name: "format-detection"}
    / Robots and Viewport.
    %meta{content: "index, follow", name: "robots"}
    %meta{content: "width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no", name: "viewport"}
    / OpenGraph for Facebook.
    %meta{content: "", property: "og:type"}
    %meta{content: "", property: "og:title"}
    %meta{content: "", property: "og:url"}
    %meta{content: "", property: "og:description"}
    %meta{content: "", property: "og:image"}
    %meta{content: "", property: "og:locale"}
    / Icons.
    %link{href: "", rel: "icon"}
    %link{href: "", rel: "apple-touch-icon"}
    / Prerendering and Prefetching.
    %link{href: "", rel: "prerender"}
    %link{href: "", rel: "prefetch"}
    %link{href: "", rel: "dns-prefetch"}
    / Miscellaneous and SEO stuff.
    %link{href: "", rel: "canonical"}
    %link{href: "", rel: "sitemap"}
    %link{href: "", rel: "next"}
    %link{href: "", rel: "prev"}
    / Stylesheets go here. Recommended: Bootstrap, Animate.
    %link{href: "assets/css/normalize.css", rel: "stylesheet"}
    / Scripts go here. Recommended: Google Analytics, Respond.js.
    %script{src: "assets/js/modernizr.js"}
    %body
    / jQuery from Google's CDN with local fallback.
    %script{src: "//ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"}
    :javascript
    (window.jQuery)||document.write('<script src="assets/js/jquery.js"><\/script>')
  3. Hayden Bleasel revised this gist Apr 13, 2014. 1 changed file with 62 additions and 0 deletions.
    62 changes: 62 additions & 0 deletions boilerplate.jade
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,62 @@
    //- HTML5 Doctype
    doctype html

    //- Modernizr HTML tag
    html.no-js(lang='en')

    //- Let's get started.
    head

    //- Document settings and metadata.
    title
    meta(charset='')
    meta(name='description', content='')
    meta(name='author', content='')
    meta(name='designer', content='')
    meta(name='rating', content='')
    meta(name='keywords', content='')

    //- Apple stuff.
    meta(name='apple-mobile-web-app-capable', content='yes')
    meta(name='apple-mobile-web-app-status-bar-style', content='black')
    meta(name='format-detection', content='telephone=yes')

    //- Robots and Viewport.
    meta(name='robots', content='index, follow')
    meta(name='viewport', content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no')

    //- OpenGraph for Facebook.
    meta(property='og:type', content='')
    meta(property='og:title', content='')
    meta(property='og:url', content='')
    meta(property='og:description', content='')
    meta(property='og:image', content='')
    meta(property='og:locale', content='')

    //- Icons.
    link(rel='icon', href='')
    link(rel='apple-touch-icon', href='')

    //- Prerendering and Prefetching.
    link(rel='prerender', href='')
    link(rel='prefetch', href='')
    link(rel='dns-prefetch', href='')

    //- Miscellaneous and SEO stuff.
    link(rel='canonical', href='')
    link(rel='sitemap', href='')
    link(rel='next', href='')
    link(rel='prev', href='')

    //- Stylesheets go here. Recommended: Bootstrap, Animate.
    link(rel='stylesheet', href='assets/css/normalize.css')

    //- Scripts go here. Recommended: Google Analytics, Respond.js.
    script(src='assets/js/modernizr.js')

    body

    //- jQuery from Google's CDN with local fallback.
    script(src='//ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js')
    script
    (window.jQuery)||document.write('<script src="assets/js/jquery.js"><\\/script>')
  4. Hayden Bleasel revised this gist Apr 13, 2014. 1 changed file with 2 additions and 5 deletions.
    7 changes: 2 additions & 5 deletions boilerplate.html
    Original file line number Diff line number Diff line change
    @@ -1,11 +1,8 @@
    <!-- HTML5 Doctype. Remember to delete these comments (Quirks Mode). -->
    <!doctype html>

    <!-- Modernizr HTML tags with IE classes. -->
    <!--[if lt IE 7]> <html lang="" class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
    <!--[if IE 7]> <html lang="" class="no-js lt-ie9 lt-ie8"> <![endif]-->
    <!--[if IE 8]> <html lang="" class="no-js lt-ie9"> <![endif]-->
    <!--[if gt IE 8]><!--> <html lang="" class="no-js"> <!--<![endif]-->
    <!-- Modernizr HTML tag. -->
    <html lang="" class="no-js">

    <!-- Let's get started. -->
    <head>
  5. Hayden Bleasel revised this gist Mar 27, 2014. 1 changed file with 2 additions and 2 deletions.
    4 changes: 2 additions & 2 deletions boilerplate.html
    Original file line number Diff line number Diff line change
    @@ -52,7 +52,7 @@
    <link rel="prev" href="" />

    <!-- Stylesheets go here. Recommended: Bootstrap, Animate. -->
    <link rel="stylesheet" href="assets/css/normalize/css" />
    <link rel="stylesheet" href="assets/css/normalize.css" />

    <!-- Scripts go here. Recommended: Google Analytics, Respond.js. -->
    <script src="assets/js/modernizr.js"></script>
    @@ -61,7 +61,7 @@
    <body>

    <!-- jQuery from Google's CDN with local fallback. -->
    <script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
    <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
    <script>(window.jQuery)||document.write('<script src="assets/js/jquery.js"><\/script>')</script>

    </body>
  6. Hayden Bleasel revised this gist Mar 24, 2014. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion boilerplate.html
    Original file line number Diff line number Diff line change
    @@ -37,7 +37,7 @@
    <meta property="og:locale" content="" />

    <!-- Icons. -->
    <link rel="shortcut icon" href="" />
    <link rel="icon" href="" />
    <link rel="apple-touch-icon" href="" />

    <!-- Prerendering and Prefetching. -->
  7. @haydenbleasel haydenbleasel revised this gist Jan 10, 2014. 1 changed file with 4 additions and 8 deletions.
    12 changes: 4 additions & 8 deletions boilerplate.html
    Original file line number Diff line number Diff line change
    @@ -19,19 +19,15 @@
    <meta name="rating" content="" />
    <meta name="keywords" content="" />

    <!-- Robots. Should also add a robots.txt file with user-agent, disallow and sitemap. -->
    <meta name="robots" content="index, follow" />

    <!-- Responsive and mobile design. -->
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
    <meta name="HandheldFriendly" content="true" />
    <meta name="MobileOptimized" content="320" />

    <!-- Apple stuff. -->
    <meta name="apple-mobile-web-app-capable" content="yes" />
    <meta name="apple-mobile-web-app-status-bar-style" content="black" />
    <meta name="format-detection" content="telephone=yes" />

    <!-- Robots and Viewport. -->
    <meta name="robots" content="index, follow" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />

    <!-- OpenGraph for Facebook. -->
    <meta property="og:type" content="" />
    <meta property="og:title" content="" />
  8. @haydenbleasel haydenbleasel revised this gist Jan 6, 2014. 1 changed file with 2 additions and 4 deletions.
    6 changes: 2 additions & 4 deletions boilerplate.html
    Original file line number Diff line number Diff line change
    @@ -9,12 +9,10 @@

    <!-- Let's get started. -->
    <head>

    <!-- Document settings. -->
    <meta charset="" />

    <!-- Page meta. -->
    <!-- Document settings and metadata. -->
    <title></title>
    <meta charset="" />
    <meta name="description" content="" />
    <meta name="author" content="" />
    <meta name="designer" content="" />
  9. @haydenbleasel haydenbleasel revised this gist Jan 6, 2014. 1 changed file with 8 additions and 13 deletions.
    21 changes: 8 additions & 13 deletions boilerplate.html
    Original file line number Diff line number Diff line change
    @@ -12,9 +12,6 @@

    <!-- Document settings. -->
    <meta charset="" />
    <!--[if IE]>
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
    <![endif]-->

    <!-- Page meta. -->
    <title></title>
    @@ -45,22 +42,20 @@
    <meta property="og:image" content="" />
    <meta property="og:locale" content="" />

    <!-- Internet Explorer 11. -->
    <link rel="next" href="" />
    <link rel="prev" href="" />
    <link rel="prerender" href="" />
    <link rel="prefetch" href="" />

    <!-- Icons. -->
    <link rel="shortcut icon" href="" />
    <link rel="apple-touch-icon" href="" />

    <!-- Search engine optimisation. -->
    <!-- Prerendering and Prefetching. -->
    <link rel="prerender" href="" />
    <link rel="prefetch" href="" />
    <link rel="dns-prefetch" href="" />

    <!-- Miscellaneous and SEO stuff. -->
    <link rel="canonical" href="" />
    <link rel="sitemap" href="" />

    <!-- DNS handshake with foreign domain. -->
    <link rel="dns-prefetch" href="" />
    <link rel="next" href="" />
    <link rel="prev" href="" />

    <!-- Stylesheets go here. Recommended: Bootstrap, Animate. -->
    <link rel="stylesheet" href="assets/css/normalize/css" />
  10. @haydenbleasel haydenbleasel revised this gist Dec 30, 2013. 1 changed file with 5 additions and 3 deletions.
    8 changes: 5 additions & 3 deletions boilerplate.html
    Original file line number Diff line number Diff line change
    @@ -62,16 +62,18 @@
    <!-- DNS handshake with foreign domain. -->
    <link rel="dns-prefetch" href="" />

    <!-- Stylesheets go here. Recommended: Normalize, Bootstrap, Animate. -->
    <!-- Stylesheets go here. Recommended: Bootstrap, Animate. -->
    <link rel="stylesheet" href="assets/css/normalize/css" />

    <!-- Scripts go here. Recommended: Google Analytics, Modernizr, Respond.js. -->
    <!-- Scripts go here. Recommended: Google Analytics, Respond.js. -->
    <script src="assets/js/modernizr.js"></script>

    </head>
    <body>

    <!-- jQuery from Google's CDN with local fallback. -->
    <script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
    <script>(window.jQuery)||document.write('<script src=""><\/script>')</script>
    <script>(window.jQuery)||document.write('<script src="assets/js/jquery.js"><\/script>')</script>

    </body>
    </html>
  11. @haydenbleasel haydenbleasel revised this gist Dec 29, 2013. 1 changed file with 1 addition and 0 deletions.
    1 change: 1 addition & 0 deletions boilerplate.html
    Original file line number Diff line number Diff line change
    @@ -72,5 +72,6 @@
    <!-- jQuery from Google's CDN with local fallback. -->
    <script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
    <script>(window.jQuery)||document.write('<script src=""><\/script>')</script>

    </body>
    </html>
  12. @haydenbleasel haydenbleasel revised this gist Dec 22, 2013. 1 changed file with 6 additions and 0 deletions.
    6 changes: 6 additions & 0 deletions boilerplate.html
    Original file line number Diff line number Diff line change
    @@ -45,6 +45,12 @@
    <meta property="og:image" content="" />
    <meta property="og:locale" content="" />

    <!-- Internet Explorer 11. -->
    <link rel="next" href="" />
    <link rel="prev" href="" />
    <link rel="prerender" href="" />
    <link rel="prefetch" href="" />

    <!-- Icons. -->
    <link rel="shortcut icon" href="" />
    <link rel="apple-touch-icon" href="" />
  13. @haydenbleasel haydenbleasel revised this gist Nov 26, 2013. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion boilerplate.html
    Original file line number Diff line number Diff line change
    @@ -10,7 +10,7 @@
    <!-- Let's get started. -->
    <head>

    <!-- Document settings. Note: X-UA is invalid and chrome is deprecated. -->
    <!-- Document settings. -->
    <meta charset="" />
    <!--[if IE]>
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  14. @haydenbleasel haydenbleasel revised this gist Nov 26, 2013. 1 changed file with 0 additions and 3 deletions.
    3 changes: 0 additions & 3 deletions boilerplate.html
    Original file line number Diff line number Diff line change
    @@ -53,9 +53,6 @@
    <link rel="canonical" href="" />
    <link rel="sitemap" href="" />

    <!-- Dublin Core Schema. -->
    <link rel="schema.DC" href="http://purl.org/dc/elements/1.1/">

    <!-- DNS handshake with foreign domain. -->
    <link rel="dns-prefetch" href="" />

  15. @haydenbleasel haydenbleasel revised this gist Nov 26, 2013. 1 changed file with 4 additions and 19 deletions.
    23 changes: 4 additions & 19 deletions boilerplate.html
    Original file line number Diff line number Diff line change
    @@ -8,11 +8,13 @@
    <!--[if gt IE 8]><!--> <html lang="" class="no-js"> <!--<![endif]-->

    <!-- Let's get started. -->
    <head profile="http://dublincore.org/documents/2008/08/04/dc-html/">
    <head>

    <!-- Document settings. Note: X-UA is invalid and chrome is deprecated. -->
    <meta charset="" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
    <!--[if IE]>
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
    <![endif]-->

    <!-- Page meta. -->
    <title></title>
    @@ -35,23 +37,6 @@
    <meta name="apple-mobile-web-app-status-bar-style" content="black" />
    <meta name="format-detection" content="telephone=yes" />

    <!-- Dublin Core Metadata. -->
    <meta name="DC.Title" content="">
    <meta name="DC.Creator" content="">
    <meta name="DC.Subject" content="">
    <meta name="DC.Description" content="">
    <meta name="DC.Publisher" content="">
    <meta name="DC.Contributor" content="">
    <meta name="DC.Date" content="">
    <meta name="DC.Type" content="">
    <meta name="DC.Format" content="">
    <meta name="DC.Identifier" content="">
    <meta name="DC.Source" content="">
    <meta name="DC.Language" content="">
    <meta name="DC.Relation" content="">
    <meta name="DC.Coverage" content="">
    <meta name="DC.Rights" content="">

    <!-- OpenGraph for Facebook. -->
    <meta property="og:type" content="" />
    <meta property="og:title" content="" />
  16. @haydenbleasel haydenbleasel revised this gist Nov 25, 2013. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion boilerplate.html
    Original file line number Diff line number Diff line change
    @@ -11,7 +11,7 @@
    <head profile="http://dublincore.org/documents/2008/08/04/dc-html/">

    <!-- Document settings. Note: X-UA is invalid and chrome is deprecated. -->
    <meta charset="utf-8" />
    <meta charset="" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />

    <!-- Page meta. -->
  17. @haydenbleasel haydenbleasel revised this gist Nov 25, 2013. 1 changed file with 30 additions and 7 deletions.
    37 changes: 30 additions & 7 deletions boilerplate.html
    Original file line number Diff line number Diff line change
    @@ -2,16 +2,17 @@
    <!doctype html>

    <!-- Modernizr HTML tags with IE classes. -->
    <!--[if lt IE 7]> <html lang="en" class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
    <!--[if IE 7]> <html lang="en" class="no-js lt-ie9 lt-ie8"> <![endif]-->
    <!--[if IE 8]> <html lang="en" class="no-js lt-ie9"> <![endif]-->
    <!--[if gt IE 8]><!--> <html lang="en" class="no-js"> <!--<![endif]-->
    <!--[if lt IE 7]> <html lang="" class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
    <!--[if IE 7]> <html lang="" class="no-js lt-ie9 lt-ie8"> <![endif]-->
    <!--[if IE 8]> <html lang="" class="no-js lt-ie9"> <![endif]-->
    <!--[if gt IE 8]><!--> <html lang="" class="no-js"> <!--<![endif]-->

    <!-- Let's get started. -->
    <head>
    <head profile="http://dublincore.org/documents/2008/08/04/dc-html/">

    <!-- Document settings. -->
    <!-- Document settings. Note: X-UA is invalid and chrome is deprecated. -->
    <meta charset="utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />

    <!-- Page meta. -->
    <title></title>
    @@ -34,6 +35,23 @@
    <meta name="apple-mobile-web-app-status-bar-style" content="black" />
    <meta name="format-detection" content="telephone=yes" />

    <!-- Dublin Core Metadata. -->
    <meta name="DC.Title" content="">
    <meta name="DC.Creator" content="">
    <meta name="DC.Subject" content="">
    <meta name="DC.Description" content="">
    <meta name="DC.Publisher" content="">
    <meta name="DC.Contributor" content="">
    <meta name="DC.Date" content="">
    <meta name="DC.Type" content="">
    <meta name="DC.Format" content="">
    <meta name="DC.Identifier" content="">
    <meta name="DC.Source" content="">
    <meta name="DC.Language" content="">
    <meta name="DC.Relation" content="">
    <meta name="DC.Coverage" content="">
    <meta name="DC.Rights" content="">

    <!-- OpenGraph for Facebook. -->
    <meta property="og:type" content="" />
    <meta property="og:title" content="" />
    @@ -50,10 +68,15 @@
    <link rel="canonical" href="" />
    <link rel="sitemap" href="" />

    <!-- Dublin Core Schema. -->
    <link rel="schema.DC" href="http://purl.org/dc/elements/1.1/">

    <!-- DNS handshake with foreign domain. -->
    <link rel="dns-prefetch" href="" />

    <!-- Stylesheets and scripts go here. Recommended: Bootstrap, Respond.js and Modernizr. -->
    <!-- Stylesheets go here. Recommended: Normalize, Bootstrap, Animate. -->

    <!-- Scripts go here. Recommended: Google Analytics, Modernizr, Respond.js. -->

    </head>
    <body>
  18. @haydenbleasel haydenbleasel revised this gist Nov 22, 2013. 1 changed file with 3 additions and 3 deletions.
    6 changes: 3 additions & 3 deletions boilerplate.html
    Original file line number Diff line number Diff line change
    @@ -51,9 +51,9 @@
    <link rel="sitemap" href="" />

    <!-- DNS handshake with foreign domain. -->
    <link rel="dns-prefetch" href="" />
    <!-- Stylesheets and scripts go here. Recommended: Bootstrap, Respond.js and Modernizr. -->
    <link rel="dns-prefetch" href="" />
    <!-- Stylesheets and scripts go here. Recommended: Bootstrap, Respond.js and Modernizr. -->

    </head>
    <body>
  19. @haydenbleasel haydenbleasel revised this gist Nov 21, 2013. 1 changed file with 4 additions and 4 deletions.
    8 changes: 4 additions & 4 deletions boilerplate.html
    Original file line number Diff line number Diff line change
    @@ -2,10 +2,10 @@
    <!doctype html>

    <!-- Modernizr HTML tags with IE classes. -->
    <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
    <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
    <!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
    <!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
    <!--[if lt IE 7]> <html lang="en" class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
    <!--[if IE 7]> <html lang="en" class="no-js lt-ie9 lt-ie8"> <![endif]-->
    <!--[if IE 8]> <html lang="en" class="no-js lt-ie9"> <![endif]-->
    <!--[if gt IE 8]><!--> <html lang="en" class="no-js"> <!--<![endif]-->

    <!-- Let's get started. -->
    <head>
  20. @haydenbleasel haydenbleasel revised this gist Nov 21, 2013. 1 changed file with 4 additions and 5 deletions.
    9 changes: 4 additions & 5 deletions boilerplate.html
    Original file line number Diff line number Diff line change
    @@ -2,11 +2,10 @@
    <!doctype html>

    <!-- Modernizr HTML tags with IE classes. -->
    <!--[if lt IE 7]><html class="ie ie6 ie-lt10 ie-lt9 ie-lt8 ie-lt7 no-js" lang="en"><![endif]-->
    <!--[if IE 7]><html class="ie ie7 ie-lt10 ie-lt9 ie-lt8 no-js" lang="en"><![endif]-->
    <!--[if IE 8]><html class="ie ie8 ie-lt10 ie-lt9 no-js" lang="en"><![endif]-->
    <!--[if IE 9]><html class="ie ie9 ie-lt10 no-js" lang="en"><![endif]-->
    <!--[if gt IE 9]><!--><html class="no-js" lang="en"><!--<![endif]-->
    <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
    <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
    <!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
    <!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->

    <!-- Let's get started. -->
    <head>
  21. @haydenbleasel haydenbleasel revised this gist Nov 20, 2013. 1 changed file with 0 additions and 1 deletion.
    1 change: 0 additions & 1 deletion boilerplate.html
    Original file line number Diff line number Diff line change
    @@ -13,7 +13,6 @@

    <!-- Document settings. -->
    <meta charset="utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />

    <!-- Page meta. -->
    <title></title>
  22. @haydenbleasel haydenbleasel revised this gist Nov 20, 2013. 1 changed file with 3 additions and 3 deletions.
    6 changes: 3 additions & 3 deletions boilerplate.html
    Original file line number Diff line number Diff line change
    @@ -53,9 +53,9 @@
    <link rel="sitemap" href="" />

    <!-- DNS handshake with foreign domain. -->
    <link rel="dns-prefetch" href="" />
    <!-- Stylesheets and scripts go here. Recommended: Bootstrap, Respond.js and Modernizr. -->
    <link rel="dns-prefetch" href="" />

    <!-- Stylesheets and scripts go here. Recommended: Bootstrap, Respond.js and Modernizr. -->

    </head>
    <body>
  23. @haydenbleasel haydenbleasel revised this gist Nov 20, 2013. 1 changed file with 6 additions and 3 deletions.
    9 changes: 6 additions & 3 deletions boilerplate.html
    Original file line number Diff line number Diff line change
    @@ -48,12 +48,15 @@
    <link rel="shortcut icon" href="" />
    <link rel="apple-touch-icon" href="" />

    <!-- Stylesheets and Scripts go here. Recommended: Bootstrap, Respond.js and Modernizr. -->

    <!-- Search Engine Optimisation -->
    <!-- Search engine optimisation. -->
    <link rel="canonical" href="" />
    <link rel="sitemap" href="" />

    <!-- DNS handshake with foreign domain. -->
    <link rel="dns-prefetch" href="" />

    <!-- Stylesheets and scripts go here. Recommended: Bootstrap, Respond.js and Modernizr. -->

    </head>
    <body>

  24. @haydenbleasel haydenbleasel revised this gist Nov 20, 2013. 1 changed file with 7 additions and 4 deletions.
    11 changes: 7 additions & 4 deletions boilerplate.html
    Original file line number Diff line number Diff line change
    @@ -20,7 +20,7 @@
    <meta name="description" content="" />
    <meta name="author" content="" />
    <meta name="designer" content="" />
    <meta name="rating" content="general" />
    <meta name="rating" content="" />
    <meta name="keywords" content="" />

    <!-- Robots. Should also add a robots.txt file with user-agent, disallow and sitemap. -->
    @@ -37,19 +37,22 @@
    <meta name="format-detection" content="telephone=yes" />

    <!-- OpenGraph for Facebook. -->
    <meta property="og:type" content="website" />
    <meta property="og:type" content="" />
    <meta property="og:title" content="" />
    <meta property="og:url" content="" />
    <meta property="og:description" content="" />
    <meta property="og:image" content="" />
    <meta property="og:locale" content="" />

    <!-- Icons. -->
    <link rel="shortcut icon" href="" />
    <link rel="apple-touch-icon-precomposed" href="" />
    <link rel="apple-touch-icon" href="" />

    <!-- Stylesheets and Scripts go here. Recommended: Bootstrap, Respond.js and Modernizr. -->

    <!-- Also, generate a sitemap. -->
    <!-- Search Engine Optimisation -->
    <link rel="canonical" href="" />
    <link rel="sitemap" href="" />

    </head>
    <body>
  25. @haydenbleasel haydenbleasel revised this gist Nov 7, 2013. 1 changed file with 4 additions and 2 deletions.
    6 changes: 4 additions & 2 deletions boilerplate.html
    Original file line number Diff line number Diff line change
    @@ -47,8 +47,10 @@
    <link rel="shortcut icon" href="" />
    <link rel="apple-touch-icon-precomposed" href="" />

    <!-- Stylesheet. -->
    <link rel="stylesheet" href="" />
    <!-- Stylesheets and Scripts go here. Recommended: Bootstrap, Respond.js and Modernizr. -->

    <!-- Also, generate a sitemap. -->

    </head>
    <body>

  26. @haydenbleasel haydenbleasel created this gist Nov 1, 2013.
    59 changes: 59 additions & 0 deletions boilerplate.html
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,59 @@
    <!-- HTML5 Doctype. Remember to delete these comments (Quirks Mode). -->
    <!doctype html>

    <!-- Modernizr HTML tags with IE classes. -->
    <!--[if lt IE 7]><html class="ie ie6 ie-lt10 ie-lt9 ie-lt8 ie-lt7 no-js" lang="en"><![endif]-->
    <!--[if IE 7]><html class="ie ie7 ie-lt10 ie-lt9 ie-lt8 no-js" lang="en"><![endif]-->
    <!--[if IE 8]><html class="ie ie8 ie-lt10 ie-lt9 no-js" lang="en"><![endif]-->
    <!--[if IE 9]><html class="ie ie9 ie-lt10 no-js" lang="en"><![endif]-->
    <!--[if gt IE 9]><!--><html class="no-js" lang="en"><!--<![endif]-->

    <!-- Let's get started. -->
    <head>

    <!-- Document settings. -->
    <meta charset="utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />

    <!-- Page meta. -->
    <title></title>
    <meta name="description" content="" />
    <meta name="author" content="" />
    <meta name="designer" content="" />
    <meta name="rating" content="general" />
    <meta name="keywords" content="" />

    <!-- Robots. Should also add a robots.txt file with user-agent, disallow and sitemap. -->
    <meta name="robots" content="index, follow" />

    <!-- Responsive and mobile design. -->
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
    <meta name="HandheldFriendly" content="true" />
    <meta name="MobileOptimized" content="320" />

    <!-- Apple stuff. -->
    <meta name="apple-mobile-web-app-capable" content="yes" />
    <meta name="apple-mobile-web-app-status-bar-style" content="black" />
    <meta name="format-detection" content="telephone=yes" />

    <!-- OpenGraph for Facebook. -->
    <meta property="og:type" content="website" />
    <meta property="og:title" content="" />
    <meta property="og:url" content="" />
    <meta property="og:description" content="" />
    <meta property="og:image" content="" />

    <!-- Icons. -->
    <link rel="shortcut icon" href="" />
    <link rel="apple-touch-icon-precomposed" href="" />

    <!-- Stylesheet. -->
    <link rel="stylesheet" href="" />
    </head>
    <body>

    <!-- jQuery from Google's CDN with local fallback. -->
    <script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
    <script>(window.jQuery)||document.write('<script src=""><\/script>')</script>
    </body>
    </html>