mirror of
https://github.com/expressjs/expressjs.com.git
synced 2026-02-21 19:41:33 +00:00
35 lines
912 B
HTML
35 lines
912 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ page.lang }}">
|
|
|
|
{% include head.html %}
|
|
|
|
<body>
|
|
{% include header.html %}
|
|
<div id="overlay"></div>
|
|
|
|
<div class="content">
|
|
<nav aria-labelledby="sidebar-heading">
|
|
<div class="toc-container">
|
|
<h3 id="sidebar-heading" class="toc-heading"><em>On this page</em></h3>
|
|
{% include api/en/5x/menu.md %}
|
|
</div>
|
|
</nav>
|
|
<main>
|
|
{{ content }}
|
|
<a role="button" class="edit-github-btn" href="{{ site.github.repository_url }}/tree/gh-pages/_includes/{{page.menu}}/en/5x" aria-label="GitHub button">
|
|
<span class="hidden-dark">
|
|
{% include icons/github-light.svg %}
|
|
</span>
|
|
<span class="hidden-light">
|
|
{% include icons/github-dark.svg %}
|
|
</span>
|
|
Edit this page</a>
|
|
</main>
|
|
</div>
|
|
|
|
{% include footer.html %}
|
|
|
|
</body>
|
|
|
|
</html>
|