mirror of
https://github.com/expressjs/expressjs.com.git
synced 2026-02-23 20:32:45 +00:00
26 lines
465 B
HTML
26 lines
465 B
HTML
<!DOCTYPE html>
|
|
<!---
|
|
Copyright (c) 2016 StrongLoop, IBM, and Express Contributors
|
|
License: MIT
|
|
-->
|
|
<html lang="{{ page.lang }}">
|
|
|
|
{% include head.html %}
|
|
|
|
{% if page.lang == 'en' %}
|
|
<body class="en-doc">
|
|
{% else %}
|
|
<body class="non-en-doc">
|
|
<div id="i18n-notice-box" class="doc-box doc-warn">
|
|
{% include i18n-notice.html %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{{ content }}
|
|
|
|
{% include footer/footer-{{ page.lang }}.html %}
|
|
|
|
</body>
|
|
|
|
</html>
|