mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-29 11:24:18 +01:00
23 lines
429 B
HTML
23 lines
429 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
{% include header.html %}
|
|
</head>
|
|
<body>
|
|
{% include skippy.html %}
|
|
|
|
{% include docs-navbar.html %}
|
|
|
|
{% if page.layout == "simple" or page.layout == "examples" %}
|
|
{{ content }}
|
|
{% else %}
|
|
<main id="content" role="main">
|
|
{{ content }}
|
|
</main>
|
|
{% endif %}
|
|
|
|
{% include footer.html %}
|
|
{% include scripts.html %}
|
|
</body>
|
|
</html>
|