* Add color mode selector in footer * Interpret color mode from cookie * Update render-page.js * Delete color-mode.js * Update render-page.js * Make this more resilient to HTML tag changes * Update scroll-button.scss
22 lines
589 B
HTML
22 lines
589 B
HTML
<!doctype html>
|
|
<html lang="{{currentLanguage}}" data-color-mode="$COLORMODE$" data-dark-theme="$DARKTHEME$" data-light-theme="$LIGHTTHEME$">
|
|
{% include head %}
|
|
|
|
<body class="d-lg-flex">
|
|
{% include sidebar %}
|
|
|
|
<main class="width-full">
|
|
{% include header %}
|
|
{% include deprecation-banner %}
|
|
{% if page.relativePath == 'index.md' %}
|
|
{% include landing %}
|
|
{% else %}
|
|
{% include article %}
|
|
{% endif %}
|
|
{% include support-section %}
|
|
{% include small-footer %}
|
|
{% include scroll-button %}
|
|
</main>
|
|
</body>
|
|
</html>
|