added fixes to index.liquid.haml and corrected files names in index.liquid
Jared Lewis
committed Nov 03, 2013
commit eb33533c9810c3fcc732c1a63b2d9925f0a012f4
Showing 2
changed files with
10 additions
and 8 deletions
generators/bootstrap3/app/views/pages/index.liquid
+4
-4
| @@ | @@ -16,10 +16,10 @@ published: true |
| <script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script> | |
| <![endif]--> | |
| <link rel="shortcut icon" href="/samples/favicon.png"> | |
| - | <link rel="apple-touch-icon-precomposed" sizes="144x144" href="apple-touch-icon-144x144-precomposed.png"> |
| - | <link rel="apple-touch-icon-precomposed" sizes="114x114" href="apple-touch-icon-114x114-precomposed.png"> |
| - | <link rel="apple-touch-icon-precomposed" sizes="72x72" href="apple-touch-icon-72x72-precomposed.png"> |
| - | <link rel="apple-touch-icon-precomposed" href="apple-touch-icon-precomposed.png"> |
| + | <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/samples/apple-touch-icon-144x144-precomposed.png"> |
| + | <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/samples/apple-touch-icon-114x114-precomposed.png"> |
| + | <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/samples/apple-touch-icon-72x72-precomposed.png"> |
| + | <link rel="apple-touch-icon-precomposed" href="/samples/apple-touch-icon-precomposed.png"> |
| <!-- CSS code from Bootply.com editor --> | |
| <style type="text/css"> | |
| @media screen and (min-width: 992px) { | |
generators/bootstrap3/app/views/pages/index.liquid.haml
+6
-4
| @@ | @@ -15,10 +15,12 @@ published: true |
| {{ 'bootstrap.css' | stylesheet_tag }} | |
| /[if lt IE 9] | |
| <script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script> | |
| - | %link{href: "/samples/favicon.ico", rel: "shortcut icon"}/ |
| - | %link{href: "/samples/apple-touch-icon.png", rel: "apple-touch-icon"}/ |
| - | %link{href: "/samples/apple-touch-icon-72x72.png", rel: "apple-touch-icon", sizes: "72x72"}/ |
| - | %link{href: "/samples/apple-touch-icon-114x114.png", rel: "apple-touch-icon", sizes: "114x114"}/ |
| + | %link{rel: "shortcut icon", href: "/samples/favicon.png"}/ |
| + | %link{rel: "apple-touch-icon-precomposed", sizes: "144x144", href: "/samples/apple-touch-icon-144x144-precomposed.png"}/ |
| + | %link{rel: "apple-touch-icon-precomposed", sizes: "114x114", href: "/samples/apple-touch-icon-114x114-precomposed.png"}/ |
| + | %link{rel: "apple-touch-icon-precomposed", sizes: "72x72", href: "/samples/apple-touch-icon-72x72-precomposed.png"}/ |
| + | %link{rel: "apple-touch-icon-precomposed", href: "/samples/apple-touch-icon-precomposed.png"}/ |
| + | |
| / CSS code from Bootply.com editor | |
| :css | |
| @media screen and (min-width: 992px) { | |