aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/_layouts
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2019-09-30 03:30:50 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2019-09-30 03:30:50 +0300
commit888c21a7d9a284f3b77d13b0b1d41da0969c2397 (patch)
tree3afdf2d09bdcf0d99537d08fa418c1650589b6f0 /_layouts
parentREADME: remove the obsolete Windows notes (diff)
downloadsorting-algorithms-888c21a7d9a284f3b77d13b0b1d41da0969c2397.tar.gz
sorting-algorithms-888c21a7d9a284f3b77d13b0b1d41da0969c2397.zip
remove unused stuff: posts, comments, sidebar, etc.
Diffstat (limited to '_layouts')
-rw-r--r--_layouts/default.html5
-rw-r--r--_layouts/plain.html7
-rw-r--r--_layouts/post.html13
3 files changed, 1 insertions, 24 deletions
diff --git a/_layouts/default.html b/_layouts/default.html
index f151314..db09984 100644
--- a/_layouts/default.html
+++ b/_layouts/default.html
@@ -1,10 +1,7 @@
{% include common/header.html %}
<div class="row">
- <div class="col-md-8">
+ <div class="col-md-12">
{{ content }}
</div>
- <div class="col-md-4">
- {% include common/sidebar.html %}
- </div>
</div>
{% include common/footer.html %}
diff --git a/_layouts/plain.html b/_layouts/plain.html
deleted file mode 100644
index db09984..0000000
--- a/_layouts/plain.html
+++ /dev/null
@@ -1,7 +0,0 @@
-{% include common/header.html %}
-<div class="row">
- <div class="col-md-12">
- {{ content }}
- </div>
-</div>
-{% include common/footer.html %}
diff --git a/_layouts/post.html b/_layouts/post.html
deleted file mode 100644
index faed6d4..0000000
--- a/_layouts/post.html
+++ /dev/null
@@ -1,13 +0,0 @@
-{% include common/header.html %}
-<div class="row">
- <div class="col-md-8">
- <h1>{{ page.title }}</h1>
- <p class="text-muted"><span class="glyphicon glyphicon-time"></span>&nbsp;Posted on {{ page.date | date: '%-d %B %Y' }}</p>
- {{ content }}
- <hr/>
- </div>
- <div class="col-md-4">
- {% include common/sidebar.html %}
- </div>
-</div>
-{% include common/footer.html %}