|
- {% extends "root.html" %}
- {% block all %}
- <!doctype html>
- <!-- https://github.com/paulirish/html5-boilerplate/blob/master/index.html -->
- <!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
- <!--[if lt IE 7 ]> <html lang="en" class="no-js ie6"> <![endif]-->
- <!--[if IE 7 ]> <html lang="en" class="no-js ie7"> <![endif]-->
- <!--[if IE 8 ]> <html lang="en" class="no-js ie8"> <![endif]-->
- <!--[if (gte IE 9)|!(IE)]><!--> <html lang="en" class="no-js"> <!--<![endif]-->
- <head>
- {% block starthead %}{% endblock starthead %}
- <meta charset="{{page.meta.charset|default('utf-8')}}">
-
- <!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
- Remove this if you use the .htaccess -->
- <meta http-equiv="X-UA-Compatible" content="{{page.meta.compatibility|default('IE=edge,chrome=1')">
-
- <!-- encoding must be specified within the first 512 bytes www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#charset -->
-
- <!-- meta element for compatibility mode needs to be before all elements except title & meta msdn.microsoft.com/en-us/library/cc288325(VS.85).aspx -->
- <!-- Chrome Frame is only invoked if meta element for compatibility mode is within the first 1K bytes code.google.com/p/chromium/issues/detail?id=23003 -->
-
- <title>{% block title %}{{page.meta.title}}{% endblock %}</title>
- <meta name="description" content="{{page.meta.description}}">
- <meta name="author" content="{{page.meta.author}}">
-
- <!-- Mobile viewport optimized: j.mp/bplateviewport -->
- <meta name="viewport" content="{{page.meta.viewport|default('width=device-width, initial-scale=1.0')">
-
- {% block favicons %}
- <!-- Place favicon.ico & apple-touch-icon.png in the root of your domain and delete these references -->
- <link rel="shortcut icon" href="{% media '/favicon.ico' %}">
- <link rel="apple-touch-icon" href="{% media '/apple-touch-icon.png' %}">
- {% endblock favicons %}
-
- {% block css %}
- <!-- CSS : implied media="all" -->
- <link rel="stylesheet" href="{% media 'css/site.css' %}">
- <!-- Uncomment if you are specifically targeting less enabled mobile browsers
- <link rel="stylesheet" media="handheld" href="css/handheld.css?v=2"> -->
- {% endblock css %}
-
- {% block headjs %}
- <!-- All JavaScript at the bottom, except for Modernizr which enables HTML5 elements & feature detects -->
- <script src="{% media 'js/libs/modernizr-1.6.min.js' %}"></script>
- {% endblock headjs %}
- {% block endhead %}{% endblock endhead %}
- </head>
- <body id="{{page.id if page.id else page.name_without_extension}}">
-
- <div id="container">
- <header>
-
- </header>
-
- <div id="main" role="main">
- </div>
-
- <footer>
-
- </footer>
- </div> <!--! end of #container -->
-
-
- <!-- Javascript at the bottom for fast page loading -->
-
- <!-- Grab Google CDN's jQuery. fall back to local if necessary -->
- <script src="//ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.js"></script>
- <script>!window.jQuery && document.write(unescape('%3Cscript src="js/libs/jquery-1.4.4.js"%3E%3C/script%3E'))</script>
-
-
- <!-- scripts concatenated and minified via ant build script-->
- <script src="js/plugins.js"></script>
- <script src="js/script.js"></script>
- <!-- end concatenated and minified scripts-->
-
-
- <!--[if lt IE 7 ]>
- <script>
- // More information on tackling transparent PNGs for IE goo.gl/mZiyb
- //fix any <img> or .png_bg background-images
- $.getScript("js/libs/dd_belatedpng.js",function(){ DD_belatedPNG.fix('img, .png_bg'); });
- </script>
- <![endif]-->
-
- <!-- yui profiler and profileviewer - remove for production -->
- <script src="js/profiling/yahoo-profiling.min.js"></script>
- <script src="js/profiling/config.js"></script>
- <!-- end profiling code -->
-
-
- <!-- asynchronous google analytics: mathiasbynens.be/notes/async-analytics-snippet
- change the UA-XXXXX-X to be your site's ID -->
- <script>
- var _gaq = [['_setAccount', 'UA-XXXXX-X'], ['_trackPageview']];
- (function(d, t) {
- var g = d.createElement(t),
- s = d.getElementsByTagName(t)[0];
- g.async = true;
- g.src = ('https:' == location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
- s.parentNode.insertBefore(g, s);
- })(document, 'script');
- </script>
-
- </body>
- </html>
- {% endblock %}
|