mirror of
https://github.com/hacks-guide/minimal-mistakes.git
synced 2024-11-23 00:39:47 +00:00
37 lines
955 B
HTML
37 lines
955 B
HTML
---
|
|
---
|
|
|
|
<!doctype html>
|
|
{% include copyright.html %}
|
|
<html lang="{{ site.locale | slice: 0,2 | default: "en" }}" class="no-js">
|
|
<head>
|
|
{% include head.html %}
|
|
{% include head/custom.html %}
|
|
</head>
|
|
|
|
<body class="layout--{{ page.layout | default: layout.layout }}{% if page.classes or layout.classes %}{{ page.classes | default: layout.classes | join: ' ' | prepend: ' ' }}{% endif %}">
|
|
{% include_cached skip-links.html %}
|
|
{% include_cached masthead.html %}
|
|
|
|
<div class="initial-content">
|
|
{{ content }}
|
|
{% include after-content.html %}
|
|
</div>
|
|
|
|
{% if site.search == true %}
|
|
<div class="search-content">
|
|
{% include_cached search/search_form.html %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
<div id="footer" class="page__footer">
|
|
<footer>
|
|
{% include footer/custom.html %}
|
|
{% include_cached footer.html %}
|
|
</footer>
|
|
</div>
|
|
|
|
{% include scripts.html %}
|
|
</body>
|
|
</html>
|