1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00
twbs--bootstrap/_layouts/default.html

23 lines
400 B
HTML
Raw Normal View History

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