2013-07-13 16:38:53 +02:00
|
|
|
<!DOCTYPE html>
|
2013-10-30 19:23:28 +01:00
|
|
|
<html lang="en">
|
2013-07-13 16:38:53 +02:00
|
|
|
<head>
|
2013-10-30 18:35:52 +01:00
|
|
|
<meta charset="utf-8">
|
2013-12-08 17:32:26 +01:00
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
2013-07-13 16:38:53 +02:00
|
|
|
<title>{% if page.title %}{{ page.title }} - {% endif %}{{ site.title}}</title>
|
2013-07-13 22:40:43 +02:00
|
|
|
{% if page.description %}
|
2013-07-15 21:50:09 +02:00
|
|
|
<meta name="description" content="{{ page.description | strip_html }}">
|
2013-07-13 22:40:43 +02:00
|
|
|
{% endif %}
|
2013-07-13 21:18:57 +02:00
|
|
|
|
2013-10-30 18:35:52 +01:00
|
|
|
<link href="/favicon.ico" rel="shortcut icon" type="image/x-icon">
|
|
|
|
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Chivo:900">
|
|
|
|
<link rel="stylesheet" href="/css/application.css" media="screen">
|
|
|
|
<script src="/javascripts/modernizr.js"></script>
|
2013-07-13 16:38:53 +02:00
|
|
|
<!--[if (gte IE 6)&(lte IE 8)]>
|
2013-10-30 18:35:52 +01:00
|
|
|
<script src="/javascripts/selectivizr-min.js"></script>
|
2013-07-13 16:38:53 +02:00
|
|
|
<![endif]-->
|
2013-10-30 18:10:25 +01:00
|
|
|
|
2013-07-13 16:38:53 +02:00
|
|
|
</head>
|
2013-10-31 12:47:03 +01:00
|
|
|
<body class="{{ page.layout }}{% if page.class %} {{ page.class }}{% endif %}">
|
2013-10-30 19:23:28 +01:00
|
|
|
<div class="container">
|
2013-07-13 16:38:53 +02:00
|
|
|
|
2013-07-13 21:46:13 +02:00
|
|
|
{% include breadcrumbs.html %}
|
2013-07-13 21:42:46 +02:00
|
|
|
|
|
|
|
{% if page.title %}
|
|
|
|
<h1>{{ page.title }}</h1>
|
2013-07-13 22:28:46 +02:00
|
|
|
{% endif %}
|