diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2017-05-30 04:55:24 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2017-05-30 04:55:24 +0300 |
commit | 469719e7e4955ca15cc977e0a899bdc07fd657bc (patch) | |
tree | afdbd6f71946962c380df393e268974c826e4573 /_layouts | |
parent | bump dependencies (diff) | |
download | egor-tensin.github.io-469719e7e4955ca15cc977e0a899bdc07fd657bc.tar.gz egor-tensin.github.io-469719e7e4955ca15cc977e0a899bdc07fd657bc.zip |
renamed layout 'main' to 'plain'
Diffstat (limited to '_layouts')
-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 %} |