1
0
mirror of synced 2026-01-08 03:01:54 -05:00
Files
docs/layouts/default.html
Kevin Heis d47d795e7c Enable dark mode, matching OS setting (#18749)
* 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
2021-05-10 11:06:54 -07:00

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>