|
| 1 | +<!DOCTYPE html> |
| 2 | +<html> |
| 3 | +<head> |
| 4 | +<metacharset="utf-8"> |
| 5 | +<title>{% if page.title %}{{ page.title }} • {% endif %}{{ site.title }}</title> |
| 6 | + {% if page.excerpt %}<metaname="description"content="{{ page.excerpt | strip_html }}">{% endif %} |
| 7 | + {% if page.tags %}<metaname="keywords"content="{{ page.tags | join: ', ' }}">{% endif %} |
| 8 | + {% if page.author %} |
| 9 | + {% assign author = site.data.authors[page.author] %}{% else %}{% assign author = site.owner %} |
| 10 | + {% endif %} |
| 11 | + {% include open-graph.html %} |
| 12 | + |
| 13 | +<linkrel="canonical"href="{{ page.url | replace:'index.html','' | prepend: site.url }}"> |
| 14 | + |
| 15 | +<linkhref="{{ site.url }}/atom.xml"type="application/atom+xml"rel="alternate"title="{{ site.title }} Atom Feed"> |
| 16 | +<linkhref="{{ site.url }}/sitemap.xml"type="application/xml"rel="sitemap"title="Sitemap"> |
| 17 | + |
| 18 | +<metaname="HandheldFriendly"content="True"> |
| 19 | +<metaname="MobileOptimized"content="320"> |
| 20 | +<metaname="viewport"content="width=device-width, initial-scale=1.0"> |
| 21 | +<metahttp-equiv="cleartype"content="on"> |
| 22 | + |
| 23 | +<linkrel="stylesheet"href="{{ site.url }}/css/main.css"> |
| 24 | +<!-- HTML5 Shiv and Media Query Support for IE --> |
| 25 | +<!--[if lt IE 9]> |
| 26 | + <script src="{{ site.url }}/js/vendor/html5shiv.min.js"></script> |
| 27 | + <script src="{{ site.url }}/js/vendor/respond.min.js"></script> |
| 28 | + <![endif]--> |
| 29 | + {% if site.google_analytics and jekyll.environment == 'production' %} |
| 30 | + {% include google-analytics.html %} |
| 31 | + {% endif %} |
| 32 | +</head> |
| 33 | + |
| 34 | +<bodyid="js-body"> |
| 35 | + {% include browser-upgrade.html %} |
| 36 | + {% include header.html %} |
| 37 | +<!-- {% include navigation-sliding.html %} --> |
| 38 | + |
| 39 | +<divid="page-wrapper"> |
| 40 | +</div> |
| 41 | + |
| 42 | +<scriptsrc="{{ site.url }}/js/vendor/jquery-1.9.1.min.js"></script> |
| 43 | +<scriptsrc="{{ site.url }}/js/main.js"></script> |
| 44 | + |
| 45 | +</body> |
| 46 | + |
| 47 | +</html> |