From 44c5b78027cbb23fad45787bb8c58461a2a17a79 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Tue, 30 Jun 2015 23:41:19 +0300 Subject: rename layout 'posts' to 'main' --- _layouts/main.html | 10 ++++++++++ _layouts/posts.html | 10 ---------- index.html | 4 ++-- 3 files changed, 12 insertions(+), 12 deletions(-) create mode 100644 _layouts/main.html delete mode 100644 _layouts/posts.html diff --git a/_layouts/main.html b/_layouts/main.html new file mode 100644 index 0000000..920cbd9 --- /dev/null +++ b/_layouts/main.html @@ -0,0 +1,10 @@ +{% include header.html %} +
+
+ {{ content }} +
+
+ {% include sidebar.html %} +
+
+{% include footer.html %} diff --git a/_layouts/posts.html b/_layouts/posts.html deleted file mode 100644 index 920cbd9..0000000 --- a/_layouts/posts.html +++ /dev/null @@ -1,10 +0,0 @@ -{% include header.html %} -
-
- {{ content }} -
-
- {% include sidebar.html %} -
-
-{% include footer.html %} diff --git a/index.html b/index.html index 778ee5e..ee46490 100644 --- a/index.html +++ b/index.html @@ -1,6 +1,6 @@ --- -title: Posts -layout: posts +title: Sorting algorithms +layout: main group: "navigation" --- {% if site.posts.size == 0 %} -- cgit v1.2.3