f7ecb7b6cb
All downstream changes from the theme (i.e. here) will be denoted with: /* hacks-guide change start */ and /* hacks-guide change end */ One-line changes are marked with /* hacks-guide change */ next to it. Since our theme does not have linear history with upstream, this allows quicker identification of what exactly has differentiated downstream, as we do have a few out-of-tree patches for extra functionality.
45 lines
1.2 KiB
HTML
45 lines
1.2 KiB
HTML
---
|
|
---
|
|
|
|
<!doctype html>
|
|
<!--
|
|
Minimal Mistakes Jekyll Theme 4.24.0 by Michael Rose
|
|
Copyright 2013-2020 Michael Rose - mademistakes.com | @mmistakes
|
|
Free for personal and commercial use under the MIT license
|
|
https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE
|
|
-->
|
|
|
|
<html lang="{{ site.locale | slice: 0,2 | default: "en" }}" class="no-js">
|
|
<head>
|
|
{% include head.html %}
|
|
{% include head/custom.html %}
|
|
</head>
|
|
|
|
<!-- hacks-guide change start: Disable caching -->
|
|
<body class="layout--{{ page.layout | default: layout.layout }}{% if page.classes or layout.classes %}{{ page.classes | default: layout.classes | join: ' ' | prepend: ' ' }}{% endif %}">
|
|
{% include skip-links.html %}
|
|
{% include browser-upgrade.html %}
|
|
{% include masthead.html %}
|
|
|
|
<div class="initial-content">
|
|
{{ content }}
|
|
</div>
|
|
|
|
{% if site.search == true %}
|
|
<div class="search-content">
|
|
{% include search/search_form.html %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
<div id="footer" class="page__footer">
|
|
<footer>
|
|
{% include footer/custom.html %}
|
|
{% include footer.html %}
|
|
</footer>
|
|
</div>
|
|
<!-- hacks-guide change end -->
|
|
|
|
{% include scripts.html %}
|
|
|
|
</body>
|
|
</html>
|