1
0
mirror of https://github.com/hacks-guide/Guide_3DS.git synced 2025-09-03 05:22:40 +02:00

Remove caching:

This is the solution to making sure things that need translating aren't cached from English. A continuation of another commit that needed nocache.

ALSO:Add kartdlphax to progress sidebar
This commit is contained in:
lifehackerhansol
2021-10-22 22:59:12 -07:00
committed by lifehackerhansol
parent c8380f341c
commit 3997a1d8aa
6 changed files with 90 additions and 80 deletions

View File

@@ -8,6 +8,8 @@
Free for personal and commercial use under the MIT license
https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE
-->
<!-- for guide purposes all caching is removed and is separately built. -->
<html lang="{{ site.locale | slice: 0,2 | default: "en" }}" class="no-js">
<head>
{% include head.html %}
@@ -15,9 +17,9 @@
</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 %}
{% include skip-links.html %}
{% include browser-upgrade.html %}
{% include masthead.html %}
<div class="initial-content">
{{ content }}
@@ -25,14 +27,14 @@
{% if site.search == true %}
<div class="search-content">
{% include_cached search/search_form.html %}
{% include search/search_form.html %}
</div>
{% endif %}
<div id="footer" class="page__footer">
<footer>
{% include footer/custom.html %}
{% include_cached footer.html %}
{% include footer.html %}
</footer>
</div>