diff options
| author | Mark Otto <[email protected]> | 2015-08-05 00:57:35 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2015-08-05 00:57:35 -0700 |
| commit | be3f8d9bcce6818d7f9430fa94f1d6869c62d00a (patch) | |
| tree | 6f33cd8b259985f2c97e06659e1e377cf8d61000 | |
| parent | bc88c90b2c6c10002273154eebf138d1029fdee5 (diff) | |
| download | bootstrap-be3f8d9bcce6818d7f9430fa94f1d6869c62d00a.tar.xz bootstrap-be3f8d9bcce6818d7f9430fa94f1d6869c62d00a.zip | |
simple layout for examples
| -rw-r--r-- | docs/_layouts/simple.html | 9 | ||||
| -rw-r--r-- | docs/examples/index.md | 2 |
2 files changed, 10 insertions, 1 deletions
diff --git a/docs/_layouts/simple.html b/docs/_layouts/simple.html new file mode 100644 index 000000000..27fd78813 --- /dev/null +++ b/docs/_layouts/simple.html @@ -0,0 +1,9 @@ +--- +layout: default +--- + +<div class="container bd-content"> + {% include ads.html %} + <h1 class="bd-title">{{ page.title }}</h1> + {{ content }} +</div> diff --git a/docs/examples/index.md b/docs/examples/index.md index f18365c80..c3ba98570 100644 --- a/docs/examples/index.md +++ b/docs/examples/index.md @@ -1,5 +1,5 @@ --- -layout: page +layout: simple title: Examples --- |
