diff options
Diffstat (limited to '_layouts')
-rw-r--r-- | _layouts/about.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/about.html b/_layouts/about.html new file mode 100644 index 0000000..9a6a620 --- /dev/null +++ b/_layouts/about.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 %} |