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