diff options
| author | Andrew Lee <alee14498@gmail.com> | 2019-10-27 09:57:37 -0400 |
|---|---|---|
| committer | Andrew Lee <alee14498@gmail.com> | 2019-10-27 09:57:37 -0400 |
| commit | e62e7bb6b14555c9bbe5d40d217103984f4f80e6 (patch) | |
| tree | 21887d847dccacb47644eb6f74ce31326172303c /_layouts/default.html | |
| parent | 716ea6ed2b64c921a799d872a07bfbd53b2a3e58 (diff) | |
| download | pokeworld-website-e62e7bb6b14555c9bbe5d40d217103984f4f80e6.tar.gz pokeworld-website-e62e7bb6b14555c9bbe5d40d217103984f4f80e6.tar.bz2 pokeworld-website-e62e7bb6b14555c9bbe5d40d217103984f4f80e6.zip | |
Rewrite progress
Diffstat (limited to '_layouts/default.html')
| -rw-r--r-- | _layouts/default.html | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..8146222 --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,42 @@ +--- +--- + +<!doctype html> +<!-- + Minimal Mistakes Jekyll Theme 4.17.1 by Michael Rose + Copyright 2013-2019 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> + + <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 browser-upgrade.html %} + {% include_cached masthead.html %} + + <div class="initial-content"> + {{ content }} + </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> |
