1
0
mirror of synced 2025-12-26 05:02:55 -05:00
Files
docs/layouts/error-404.html
Jason Etcovitch 5d09adb106 Add/use small-footer for Actions landing page (#16265)
* Add/use small-footer

* Fix borked HTML

* Extract scripts to new include

* Add spacing

* Fix some padding

* Fix a test that uses /actions

* Fix old links

Co-authored-by: Sarah Schneider <sarahs@users.noreply.github.com>

* Update /developers in general footer

* Don't hard code free-pro-team

* Use the small-footer everywhere

* Tweak border

Co-authored-by: Sarah Schneider <sarahs@users.noreply.github.com>
2020-11-03 13:12:25 -05:00

39 lines
1.1 KiB
HTML

{% assign error = '404' %}
<html lang="{{currentLanguage}}">
{% 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-md-8 col-lg-6 mx-auto">
<img src="https://octodex.github.com/images/waldocat.png" alt="waldocat">
</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 %}
{% include small-footer %}
</main>
</body>
</html>