middleman/middleman-cli/lib/middleman-templates/html5/source/layouts/layout.erb

43 lines
2 KiB
Plaintext
Raw Normal View History

2014-04-12 21:17:38 +02:00
<!doctype html>
2012-09-04 18:48:52 +02:00
<!--[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]-->
<head>
<meta charset="utf-8">
2014-04-12 21:17:38 +02:00
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Use title if it's in the page YAML frontmatter -->
<title><%= current_page.data.title || "HTML5 Boilerplate" %></title>
2012-09-04 18:48:52 +02:00
<meta name="description" content="">
2014-04-12 21:17:38 +02:00
<meta name="viewport" content="width=device-width, initial-scale=1">
2012-09-04 18:48:52 +02:00
2014-04-12 21:17:38 +02:00
<!-- Place favicon.ico and apple-touch-icon(s) in the root directory -->
2012-09-04 18:48:52 +02:00
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
2014-04-12 21:17:38 +02:00
<script src="js/vendor/modernizr-2.7.1.min.js"></script>
2012-09-04 18:48:52 +02:00
</head>
<body>
<!--[if lt IE 7]>
2014-04-12 21:17:38 +02:00
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
2012-09-04 18:48:52 +02:00
<![endif]-->
<%= yield %>
2012-09-04 18:48:52 +02:00
2014-04-12 21:17:38 +02:00
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.11.0.min.js"><\/script>')</script>
2012-09-04 18:48:52 +02:00
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
<script>
2014-04-12 21:17:38 +02:00
(function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]=
function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date;
e=o.createElement(i);r=o.getElementsByTagName(i)[0];
e.src='//www.google-analytics.com/analytics.js';
r.parentNode.insertBefore(e,r)}(window,document,'script','ga'));
ga('create','UA-XXXXX-X');ga('send','pageview');
2012-09-04 18:48:52 +02:00
</script>
</body>
</html>