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