* Enable dark mode, matching OS setting
* A few more dark mode tweaks
* Revert mountain opacity
* Update mountains on homepage to rgba
* Revert "Update sidebar to use primer backgrounds (#18818)"
This reverts commit 229ce4518f.
* Revert "Revert "Update sidebar to use primer backgrounds (#18818)""
This reverts commit 5845e25c5d5236776fb83acc42a3444b5f44b960.
* Update overrides.scss
* Remove labtocat and waldocat from 500 and 404
* Readd sidebar changes
23 lines
584 B
HTML
23 lines
584 B
HTML
<!doctype html>
|
|
<html lang="{{currentLanguage}}" data-color-mode="auto" data-dark-theme="dark_dimmed">
|
|
{% 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 %}
|
|
{% include toggle-images %}
|
|
</main>
|
|
</body>
|
|
</html>
|