diff options
Diffstat (limited to 'vendor/twbs/bootstrap/site/_layouts/default.html')
-rw-r--r-- | vendor/twbs/bootstrap/site/_layouts/default.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/vendor/twbs/bootstrap/site/_layouts/default.html b/vendor/twbs/bootstrap/site/_layouts/default.html new file mode 100644 index 000000000..28f4cdccb --- /dev/null +++ b/vendor/twbs/bootstrap/site/_layouts/default.html @@ -0,0 +1,22 @@ +<!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> |