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

43 lines
1.2 KiB
HTML
Raw Normal View History

---
---
2016-04-13 23:10:01 +02:00
<!doctype html>
<!--
2021-02-06 02:53:57 +01:00
Minimal Mistakes Jekyll Theme 4.22.0 by Michael Rose
2020-08-31 03:15:36 +02:00
Copyright 2013-2020 Michael Rose - mademistakes.com | @mmistakes
Free for personal and commercial use under the MIT license
2018-10-09 23:46:34 +02:00
https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE
-->
2016-07-15 16:27:30 +02:00
<html lang="{{ site.locale | slice: 0,2 | default: "en" }}" class="no-js">
2016-02-23 03:22:07 +01:00
<head>
2016-04-13 23:10:01 +02:00
{% include head.html %}
{% include head/custom.html %}
2016-02-23 03:22:07 +01:00
</head>
<body class="layout--{{ page.layout | default: layout.layout }}{% if page.classes or layout.classes %}{{ page.classes | default: layout.classes | join: ' ' | prepend: ' ' }}{% endif %}">
2019-06-11 01:31:59 +02:00
{% include_cached skip-links.html %}
{% include_cached browser-upgrade.html %}
{% include_cached masthead.html %}
2016-02-23 03:22:07 +01:00
<div class="initial-content">
{{ content }}
</div>
{% if site.search == true %}
<div class="search-content">
{% include_cached search/search_form.html %}
</div>
{% endif %}
2016-02-22 22:46:49 +01:00
2019-06-11 01:31:59 +02:00
<div id="footer" class="page__footer">
2016-04-13 23:10:01 +02:00
<footer>
2016-06-06 21:16:43 +02:00
{% include footer/custom.html %}
{% include_cached footer.html %}
2016-04-13 23:10:01 +02:00
</footer>
</div>
2016-02-22 22:46:49 +01:00
{% include scripts.html %}
2016-02-22 22:46:49 +01:00
2016-02-23 03:22:07 +01:00
</body>
</html>