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

42 lines
1.1 KiB
HTML
Raw Normal View History

---
---
2016-04-13 17:10:01 -04:00
<!doctype html>
<!--
2017-12-07 10:28:54 -05:00
Minimal Mistakes Jekyll Theme 4.8.0 by Michael Rose
2017-02-21 10:50:57 -05:00
Copyright 2017 Michael Rose - mademistakes.com | @mmistakes
Free for personal and commercial use under the MIT license
https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE.txt
-->
2016-07-15 10:27:30 -04:00
<html lang="{{ site.locale | slice: 0,2 | default: "en" }}" class="no-js">
2016-02-22 21:22:07 -05:00
<head>
2016-04-13 17:10:01 -04:00
{% include head.html %}
{% include head/custom.html %}
2016-02-22 21:22:07 -05:00
</head>
<body class="layout--{{ page.layout | default: layout.layout }}{% if page.classes or layout.classes %}{{ page.classes | default: layout.classes | join: ' ' | prepend: ' ' }}{% endif %}">
2016-02-22 21:22:07 -05:00
2016-04-13 17:10:01 -04:00
{% include browser-upgrade.html %}
{% include masthead.html %}
2016-02-22 21:22:07 -05:00
<div class="initial-content">
{{ content }}
</div>
{% if site.search == true %}
<div class="search-content">
{% include search_form.html %}
</div>
{% endif %}
2016-02-22 16:46:49 -05:00
2016-04-13 17:10:01 -04:00
<div class="page__footer">
<footer>
2016-06-06 15:16:43 -04:00
{% include footer/custom.html %}
2016-04-13 17:10:01 -04:00
{% include footer.html %}
</footer>
</div>
2016-02-22 16:46:49 -05:00
2016-04-13 17:10:01 -04:00
{% include scripts.html %}
2016-02-22 16:46:49 -05:00
2016-02-22 21:22:07 -05:00
</body>
2017-09-06 15:14:15 -04:00
</html>