mirror of
https://github.com/expressjs/expressjs.com.git
synced 2026-02-21 19:41:33 +00:00
18 lines
384 B
HTML
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> |