twbs--bootstrap/site/_layouts/default.html

23 lines
400 B
HTML
Raw Normal View History

<!doctype html>
2013-02-12 20:16:32 +00:00
<html lang="en">
<head>
{% include header.html %}
2013-02-12 20:16:32 +00:00
</head>
<body>
{% include skippy.html %}
2013-02-12 20:16:32 +00:00
2017-05-30 20:25:26 +00:00
{% include docs-navbar.html %}
2015-08-05 06:39:51 +00:00
{% if page.layout == "simple" %}
{{ content }}
2017-08-11 09:43:17 +00:00
{% else %}
<main id="content" role="main">
{{ content }}
</main>
2017-08-11 09:43:17 +00:00
{% endif %}
2013-02-12 20:16:32 +00:00
{% include footer.html %}
{% include scripts.html %}
2013-02-12 20:16:32 +00:00
</body>
</html>