2016-02-22 22:03:47 -05:00
|
|
|
---
|
|
|
|
layout: compress
|
|
|
|
---
|
|
|
|
|
2016-03-07 10:27:07 -05:00
|
|
|
{% include base_path %}
|
2016-02-22 16:46:49 -05:00
|
|
|
|
|
|
|
<!DOCTYPE html>
|
2016-03-21 15:59:50 -04:00
|
|
|
<html lang="{{ site.locale | slice: 0,2 }}" class="no-js">
|
2016-02-22 21:22:07 -05:00
|
|
|
<head>
|
2016-03-10 21:13:01 -05:00
|
|
|
{% include head.html %}
|
2016-03-21 14:11:14 -04:00
|
|
|
{% include head/custom.html %}
|
2016-02-22 21:22:07 -05:00
|
|
|
</head>
|
|
|
|
|
2016-02-22 21:44:55 -05:00
|
|
|
<body>
|
2016-02-22 21:22:07 -05:00
|
|
|
|
2016-03-10 21:13:01 -05:00
|
|
|
{% include browser-upgrade.html %}
|
|
|
|
{% include masthead.html %}
|
2016-02-22 21:22:07 -05:00
|
|
|
|
2016-02-24 21:23:29 -05:00
|
|
|
{% if page.header.image %}
|
2016-03-10 13:06:59 -05:00
|
|
|
<div class="page__hero">
|
2016-03-04 22:57:12 -05:00
|
|
|
<img src=
|
|
|
|
{% if page.header.image contains "http" %}
|
|
|
|
"{{ page.header.image }}"
|
|
|
|
{% else %}
|
2016-03-07 10:27:07 -05:00
|
|
|
"{{ page.header.image | prepend: "/images/" | prepend: base_path }}"
|
2016-03-04 22:57:12 -05:00
|
|
|
{% endif %}
|
2016-03-10 13:06:59 -05:00
|
|
|
alt="{{ page.title }}" class="page__hero-image">
|
2016-03-04 22:57:12 -05:00
|
|
|
{% if page.header.caption %}
|
2016-03-10 13:06:59 -05:00
|
|
|
<span class="page__hero-caption">{{ page.header.caption | markdownify | remove: "<p>" | remove: "</p>" }}</span>
|
2016-02-22 21:22:07 -05:00
|
|
|
{% endif %}
|
2016-03-11 15:55:06 -05:00
|
|
|
</div>
|
2016-02-22 16:46:49 -05:00
|
|
|
{% endif %}
|
|
|
|
|
2016-03-11 21:09:09 -05:00
|
|
|
{% if site.breadcrumbs and site.categories.type == 'jekyll-archives' %}
|
2016-03-10 21:13:01 -05:00
|
|
|
{% include breadcrumbs.html %}
|
2016-03-04 22:57:12 -05:00
|
|
|
{% endif %}
|
|
|
|
|
2016-02-22 21:22:07 -05:00
|
|
|
<div id="main" role="main">
|
2016-03-20 15:20:33 -04:00
|
|
|
{% if page.author_profile or page.sidebar %}<div class="sidebar sticky">
|
2016-03-10 21:13:01 -05:00
|
|
|
{% if page.author_profile %}{% include author-profile.html %}{% endif %}
|
2016-03-06 22:05:43 -05: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 10:27:07 -05:00
|
|
|
"{{ s.image | prepend: "/images/" | prepend: base_path }}"
|
2016-03-06 22:05:43 -05: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 %}
|
2016-03-20 15:20:33 -04:00
|
|
|
</div>{% endif %}
|
2016-02-22 21:22:07 -05:00
|
|
|
{{ content }}
|
2016-03-11 15:55:06 -05:00
|
|
|
</div>
|
2016-02-22 16:46:49 -05:00
|
|
|
|
2016-03-11 15:55:06 -05:00
|
|
|
<div class="page__footer">
|
2016-02-22 21:22:07 -05:00
|
|
|
<footer>
|
2016-03-10 21:13:01 -05:00
|
|
|
{% include footer.html %}
|
2016-02-22 21:22:07 -05:00
|
|
|
</footer>
|
2016-03-11 15:55:06 -05:00
|
|
|
</div>
|
2016-02-22 16:46:49 -05:00
|
|
|
|
2016-03-10 21:13:01 -05:00
|
|
|
{% include scripts.html %}
|
2016-03-21 14:11:39 -04:00
|
|
|
{% include footer/custom.html %}
|
2016-02-22 16:46:49 -05:00
|
|
|
|
2016-02-22 21:22:07 -05:00
|
|
|
</body>
|
2016-02-22 16:46:49 -05:00
|
|
|
</html>
|