1
0
mirror of synced 2026-01-22 09:02:55 -05:00
Files
docs/layouts/error-404.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

37 lines
1.1 KiB
HTML

<!doctype html>
{% assign error = '404' %}
<html lang="{{currentLanguage}}" data-color-mode="auto" data-dark-theme="dark_dimmed">
{% include head %}
<body class="d-lg-flex error-404">
{% include sidebar %}
<main class="width-full">
{% include header %}
<div class="container-xl p-responsive py-6">
<article class="markdown-body col-md-10 col-lg-7 mx-auto">
{% include error-404-deprecation-message %}
<h1>{% data ui.errors.oops %}</h1>
<div class="lead-mktg mb-5">
{% data ui.errors.page_doesnt_exist %}
</div>
<div class="col-lg-12 mt-6">
<h3 class="mb-3">{% data ui.search.need_help %}</h3>
{% include search-form %}
</div>
<div id="search-results-container" class="mt-4 d-none" data-active-class="d-block" data-inactive-class="d-none"></div>
</article>
</div>
<!-- {{ content }} -->
{% include support-section %}
{% include small-footer %}
{% include scroll-button %}
</main>
</body>
</html>