diff options
| -rw-r--r-- | _layouts/default.html | 2 | ||||
| -rw-r--r-- | _layouts/examples.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/_layouts/default.html b/_layouts/default.html index 59f5c122b..28f4cdccb 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -8,7 +8,7 @@ {% include docs-navbar.html %} - {% if page.layout == "simple" %} + {% if page.layout == "simple" or page.layout == "examples" %} {{ content }} {% else %} <main id="content" role="main"> diff --git a/_layouts/examples.html b/_layouts/examples.html index 768f577fb..1f8fbcdec 100644 --- a/_layouts/examples.html +++ b/_layouts/examples.html @@ -11,6 +11,6 @@ layout: default {% include ads.html %} </header> -<main class="bd-content p-5" role="main"> +<main class="bd-content p-5" id="content" role="main"> {{ content }} </main> |
