hacks-guide-minimal-mistake.../_layouts/default.html

46 lines
1 KiB
HTML
Raw Normal View History

2016-02-23 03:22:07 +01:00
{% include absolute-url.liquid %}
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>
{% include head.html %}
</head>
2016-02-23 03:44:55 +01:00
<body>
2016-02-23 03:22:07 +01:00
{% include browser-upgrade.html %}
{% include navigation.html %}
{% if page.image.feature %}
<div class="image-wrap">
<img src=
2016-02-23 03:44:55 +01:00
{% if page.image.feature contains "http" %}
2016-02-23 03:22:07 +01:00
"{{ page.image.feature }}"
{% else %}
"{{ page.image.feature | prepend: "/images/" | prepend: absurl }}"
{% endif %}
alt="{{ page.title }}">
{% if page.image.credit %}
<span class="image-credit">Photo Credit: <a href="{{ page.image.creditlink }}">{{ page.image.credit }}</a></span>
2016-02-22 22:46:49 +01:00
{% endif %}
2016-02-23 03:22:07 +01:00
</div><!-- /.image-wrap -->
2016-02-22 22:46:49 +01:00
{% endif %}
2016-02-23 03:22:07 +01:00
<div id="main" role="main">
2016-02-23 03:44:55 +01:00
<div class="author-profile">
{% include author-profile.html %}
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>
{% include footer.html %}
</footer>
</div><!-- /.footer-wrap -->
2016-02-22 22:46:49 +01:00
2016-02-23 03:22:07 +01:00
{% include scripts.html %}
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>