forked from expressjs/expressjs.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.html
More file actions
41 lines (32 loc) · 778 Bytes
/
page.html
File metadata and controls
41 lines (32 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
{% if page.lang %}
<html lang="{{ page.lang }}" prefix="og: http://ogp.me/ns#">
{% include head.html %}
{% if page.lang == 'en' %}
<body class="en-doc">
{% else %}
<body class="non-en-doc">
{% endif %}
{% include header.html %}
<div id="overlay"></div>
{% if page.lang != 'en' %}
<div id="i18n-notice-box" class="doc-notice" hidden>
{% include i18n-notice.html %}
</div>
{% endif %}
{% if page.layout == 'middleware' %}
<div class="content flex-row-content">
{{ content }}
</div>
{% else %}
<div class="content">
<main>
{{ content }}
{% include github-edit-btn.html %}
</main>
</div>
{% endif %}
{% include footer.html %}
</body>
</html>
{% endif %}