12345678910111213141516171819202122 |
- <!doctype html>
- <html lang="en">
- <head>
- {% include header.html %}
- </head>
- <body>
- {% include skippy.html %}
- {% include docs-navbar.html %}
- {% if page.layout == "simple" %}
- {{ content }}
- {% else %}
- <main id="content" role="main">
- {{ content }}
- </main>
- {% endif %}
- {% include footer.html %}
- {% include scripts.html %}
- </body>
- </html>
|