2017-10-04 00:34:59 +08:00
|
|
|
<!doctype html>
|
2013-02-13 04:16:32 +08:00
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2013-02-14 15:37:08 +08:00
|
|
|
{% include header.html %}
|
2013-02-13 04:16:32 +08:00
|
|
|
</head>
|
2017-10-18 09:38:38 +08:00
|
|
|
<body>
|
2018-03-02 07:44:40 +08:00
|
|
|
{% include skippy.html %}
|
2013-02-13 04:16:32 +08:00
|
|
|
|
2017-05-31 04:25:26 +08:00
|
|
|
{% include docs-navbar.html %}
|
2015-08-05 14:39:51 +08:00
|
|
|
|
2018-10-22 04:21:41 +08:00
|
|
|
{% if page.layout == "simple" %}
|
2017-10-22 19:53:06 +08:00
|
|
|
{{ content }}
|
2017-08-11 17:43:17 +08:00
|
|
|
{% else %}
|
2017-10-22 19:53:06 +08:00
|
|
|
<main id="content" role="main">
|
|
|
|
{{ content }}
|
|
|
|
</main>
|
2017-08-11 17:43:17 +08:00
|
|
|
{% endif %}
|
2013-02-13 04:16:32 +08:00
|
|
|
|
2013-02-14 15:37:08 +08:00
|
|
|
{% include footer.html %}
|
2017-05-30 01:52:13 +08:00
|
|
|
{% include scripts.html %}
|
2013-02-13 04:16:32 +08:00
|
|
|
</body>
|
2013-02-26 16:37:59 +08:00
|
|
|
</html>
|