0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-11-29 11:24:18 +01:00
Bootstrap/_layouts/default.html

23 lines
429 B
HTML
Raw Normal View History

<!doctype html>
2013-02-12 21:16:32 +01:00
<html lang="en">
<head>
{% include header.html %}
2013-02-12 21:16:32 +01:00
</head>
<body>
{% 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" %}
{{ content }}
2017-08-11 11:43:17 +02:00
{% else %}
<main id="content" role="main">
{{ content }}
</main>
2017-08-11 11:43:17 +02:00
{% endif %}
2013-02-12 21:16:32 +01:00
{% include footer.html %}
{% include scripts.html %}
2013-02-12 21:16:32 +01:00
</body>
</html>