Files
expressjs.com/_layouts/404.html
Sebastian Beltran c2c8ccf7b3 add 404 page (#1690)
* add 404 page

* apply suggestions from code review
2025-01-06 10:45:51 -05:00

18 lines
384 B
HTML

<!DOCTYPE html>
<html lang="en">
{% include head.html %}
{% if page.lang == 'en' %}
<body class="en-doc">
{% else %}
<body class="non-en-doc">
{% endif %}
{% include header/header-{{ page.lang }}.html %}
<div id="overlay"></div>
<main class="content-404">
{{ content }}
</main>
{% include footer/footer-{{ page.lang }}.html %}
</body>
</html>