2016-02-23 04:03:47 +01:00
|
|
|
---
|
|
|
|
layout: compress
|
|
|
|
---
|
|
|
|
|
2016-03-07 16:27:07 +01:00
|
|
|
{% include base_path %}
|
2016-02-22 22:46:49 +01:00
|
|
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="{{ site.locale | slice: 0,2 }}">
|
2016-02-23 03:22:07 +01:00
|
|
|
<head>
|
2016-03-07 16:27:07 +01:00
|
|
|
{% include head %}
|
2016-02-23 03:22:07 +01:00
|
|
|
</head>
|
|
|
|
|
2016-02-23 03:44:55 +01:00
|
|
|
<body>
|
2016-02-23 03:22:07 +01:00
|
|
|
|
2016-03-07 16:27:07 +01:00
|
|
|
{% include browser-upgrade %}
|
|
|
|
{% include navigation %}
|
2016-02-23 03:22:07 +01:00
|
|
|
|
2016-02-25 03:23:29 +01:00
|
|
|
{% if page.header.image %}
|
2016-03-10 19:06:59 +01:00
|
|
|
<div class="page__hero">
|
2016-03-05 04:57:12 +01:00
|
|
|
<img src=
|
|
|
|
{% if page.header.image contains "http" %}
|
|
|
|
"{{ page.header.image }}"
|
|
|
|
{% else %}
|
2016-03-07 16:27:07 +01:00
|
|
|
"{{ page.header.image | prepend: "/images/" | prepend: base_path }}"
|
2016-03-05 04:57:12 +01:00
|
|
|
{% endif %}
|
2016-03-10 19:06:59 +01:00
|
|
|
alt="{{ page.title }}" class="page__hero-image">
|
2016-03-05 04:57:12 +01:00
|
|
|
{% if page.header.caption %}
|
2016-03-10 19:06:59 +01:00
|
|
|
<span class="page__hero-caption">{{ page.header.caption | markdownify | remove: "<p>" | remove: "</p>" }}</span>
|
2016-02-23 03:22:07 +01:00
|
|
|
{% endif %}
|
|
|
|
</div><!-- /.image-wrap -->
|
2016-02-22 22:46:49 +01:00
|
|
|
{% endif %}
|
|
|
|
|
2016-03-05 04:57:12 +01:00
|
|
|
{% if site.breadcrumbs %}
|
2016-03-07 16:27:07 +01:00
|
|
|
{% include breadcrumbs %}
|
2016-03-05 04:57:12 +01:00
|
|
|
{% endif %}
|
|
|
|
|
2016-02-23 03:22:07 +01:00
|
|
|
<div id="main" role="main">
|
2016-03-10 19:06:17 +01:00
|
|
|
<div class="sidebar sticky">
|
2016-03-07 16:27:07 +01:00
|
|
|
{% if page.author_profile %}{% include author-profile %}{% endif %}
|
2016-03-07 04:05:43 +01:00
|
|
|
{% if page.sidebar %}
|
|
|
|
{% for s in page.sidebar %}
|
|
|
|
{% if s.image %}
|
|
|
|
<img src=
|
|
|
|
{% if s.image contains "http" %}
|
|
|
|
"{{ s.image }}"
|
|
|
|
{% else %}
|
2016-03-07 16:27:07 +01:00
|
|
|
"{{ s.image | prepend: "/images/" | prepend: base_path }}"
|
2016-03-07 04:05:43 +01:00
|
|
|
{% endif %}
|
|
|
|
alt="{% if s.image_alt %}{{ s.image_alt }}{% endif %}">
|
|
|
|
{% endif %}
|
|
|
|
{% if s.title %}<h3>{{ s.title }}</h3>{% endif %}
|
|
|
|
{% if s.text %}{{ s.text | markdownify }}{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
{% unless page.author_profile or page.sidebar %} {% endunless %}
|
2016-02-23 03:22:07 +01:00
|
|
|
</div>
|
|
|
|
{{ content }}
|
|
|
|
</div><!-- /#main -->
|
2016-02-22 22:46:49 +01:00
|
|
|
|
2016-02-23 03:22:07 +01:00
|
|
|
<div class="footer-wrap">
|
|
|
|
<footer>
|
2016-03-07 16:27:07 +01:00
|
|
|
{% include footer %}
|
2016-02-23 03:22:07 +01:00
|
|
|
</footer>
|
|
|
|
</div><!-- /.footer-wrap -->
|
2016-02-22 22:46:49 +01:00
|
|
|
|
2016-03-07 16:27:07 +01:00
|
|
|
{% include scripts %}
|
2016-02-22 22:46:49 +01:00
|
|
|
|
2016-02-23 03:22:07 +01:00
|
|
|
</body>
|
2016-02-22 22:46:49 +01:00
|
|
|
</html>
|