7eb00bbd61
* Integrate search into masthead * Fix cutoff descenders in archive article titles * Remove search page from `/test` site * Enable masthead search * Remove dedicated search page * Fix masthead search form padding * Improve insertion of search content * Speed up page transition * Add fade transition to search content * Rename visibility class names * Add `site.search` to _config.yml * Document site search feature * Update CHANGELOG and history
42 lines
No EOL
1.1 KiB
HTML
42 lines
No EOL
1.1 KiB
HTML
---
|
|
---
|
|
|
|
<!doctype html>
|
|
<!--
|
|
Minimal Mistakes Jekyll Theme 4.7.1 by Michael Rose
|
|
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
|
|
-->
|
|
<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 browser-upgrade.html %}
|
|
{% include masthead.html %}
|
|
|
|
<div class="initial-content">
|
|
{{ content }}
|
|
</div>
|
|
|
|
{% if site.search == true %}
|
|
<div class="search-content">
|
|
{% include search_form.html %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
<div class="page__footer">
|
|
<footer>
|
|
{% include footer/custom.html %}
|
|
{% include footer.html %}
|
|
</footer>
|
|
</div>
|
|
|
|
{% include scripts.html %}
|
|
|
|
</body>
|
|
</html> |