diff options
Diffstat (limited to '')
-rw-r--r-- | _layouts/main.html | 3 | ||||
-rw-r--r-- | _layouts/plain.html | 7 |
2 files changed, 7 insertions, 3 deletions
diff --git a/_layouts/main.html b/_layouts/main.html deleted file mode 100644 index 8254f8d..0000000 --- a/_layouts/main.html +++ /dev/null @@ -1,3 +0,0 @@ -{% include common/header.html %} -{{ content }} -{% include common/footer.html %} diff --git a/_layouts/plain.html b/_layouts/plain.html new file mode 100644 index 0000000..db09984 --- /dev/null +++ b/_layouts/plain.html @@ -0,0 +1,7 @@ +{% include common/header.html %} +<div class="row"> + <div class="col-md-12"> + {{ content }} + </div> +</div> +{% include common/footer.html %} |