diff options
Diffstat (limited to '_layouts/default.html')
| -rw-r--r-- | _layouts/default.html | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/_layouts/default.html b/_layouts/default.html index 0292da9fd..0c800e2bb 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -1,4 +1,4 @@ -<!DOCTYPE html> +<!doctype html> <html lang="en"> <head> {% include header.html %} @@ -12,9 +12,13 @@ {% include docs-navbar.html %} - <main id="content" role="main"> + {% if page.layout == "simple" %} {{ content }} - </main> + {% else %} + <main id="content" role="main"> + {{ content }} + </main> + {% endif %} {% include footer.html %} {% include scripts.html %} |
