diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2015-05-06 06:17:59 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2015-05-06 06:17:59 +0300 |
commit | 4e11e6d5364a12650b9a139495bd5a73943ae56a (patch) | |
tree | 061edcaa62c6b7f65f80109c42b2181840a89250 /_layouts | |
download | sorting-algorithms-4e11e6d5364a12650b9a139495bd5a73943ae56a.tar.gz sorting-algorithms-4e11e6d5364a12650b9a139495bd5a73943ae56a.zip |
initial commit
Diffstat (limited to '_layouts')
-rw-r--r-- | _layouts/plots.html | 7 | ||||
-rw-r--r-- | _layouts/post.html | 14 | ||||
-rw-r--r-- | _layouts/posts.html | 10 |
3 files changed, 31 insertions, 0 deletions
diff --git a/_layouts/plots.html b/_layouts/plots.html new file mode 100644 index 0000000..9a6a620 --- /dev/null +++ b/_layouts/plots.html @@ -0,0 +1,7 @@ +{% include header.html %} +<div class="row"> + <div class="col-md-12"> + {{ content }} + </div> +</div> +{% include footer.html %} diff --git a/_layouts/post.html b/_layouts/post.html new file mode 100644 index 0000000..4b05318 --- /dev/null +++ b/_layouts/post.html @@ -0,0 +1,14 @@ +{% include header.html %} +<div class="row"> + <div class="col-md-8"> + <h1>{{ page.title }}</h1> + <p class="text-muted"><span class="glyphicon glyphicon-time"></span> Posted on {{ page.date | date_to_long_string }}</p> + {{ content }} + <hr/> + {% include comments.html %} + </div> + <div class="col-md-4"> + {% include sidebar.html %} + </div> +</div> +{% include footer.html %} diff --git a/_layouts/posts.html b/_layouts/posts.html new file mode 100644 index 0000000..920cbd9 --- /dev/null +++ b/_layouts/posts.html @@ -0,0 +1,10 @@ +{% include header.html %} +<div class="row"> + <div class="col-md-8"> + {{ content }} + </div> + <div class="col-md-4"> + {% include sidebar.html %} + </div> +</div> +{% include footer.html %} |