diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2018-02-18 06:16:46 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2018-02-18 06:16:46 +0300 |
commit | 1ac982a1895c79cb0477152bb470584d673bece5 (patch) | |
tree | c0c144b94c801f0dfb59069f4c4d8f6af10f3108 /_layouts/default.html | |
parent | bump dependencies (diff) | |
download | jekyll-theme-1ac982a1895c79cb0477152bb470584d673bece5.tar.gz jekyll-theme-1ac982a1895c79cb0477152bb470584d673bece5.zip |
_layouts: sidebar.html -> default.html
Diffstat (limited to '_layouts/default.html')
-rw-r--r-- | _layouts/default.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..f151314 --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,10 @@ +{% include common/header.html %} +<div class="row"> + <div class="col-md-8"> + {{ content }} + </div> + <div class="col-md-4"> + {% include common/sidebar.html %} + </div> +</div> +{% include common/footer.html %} |