diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-05-07 02:38:27 +0000 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-05-07 02:38:27 +0000 |
commit | 528c5d1c324640e8df6d52b46af980c192ea8063 (patch) | |
tree | 074b2638c29cff3829ae987a60bc46cc0dcd0953 | |
parent | remove everything except Jekyll theme stuff (diff) | |
download | jekyll-theme-528c5d1c324640e8df6d52b46af980c192ea8063.tar.gz jekyll-theme-528c5d1c324640e8df6d52b46af980c192ea8063.zip |
_layouts: add full-width "plain"
-rw-r--r-- | _layouts/plain.html | 7 |
1 files changed, 7 insertions, 0 deletions
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 %} |