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