From 22a21c142fd10f4caf0b89478f44bb4030f0c11b Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Thu, 7 May 2020 02:32:33 +0000 Subject: use "remote" Jekyll theme I moved _includes/, _layouts/, css/ to egor-tensin/jekyll-theme. --- _layouts/category.html | 14 -------------- _layouts/default.html | 10 ---------- _layouts/note.html | 6 ------ _layouts/post.html | 10 ---------- 4 files changed, 40 deletions(-) delete mode 100644 _layouts/category.html delete mode 100644 _layouts/default.html delete mode 100644 _layouts/note.html delete mode 100644 _layouts/post.html (limited to '_layouts') diff --git a/_layouts/category.html b/_layouts/category.html deleted file mode 100644 index efb34db..0000000 --- a/_layouts/category.html +++ /dev/null @@ -1,14 +0,0 @@ ---- -layout: default ---- -

{{ page.title }}

-
-

This is a list of posts in category "{{ page.category }}".

-{% if site.categories[page.category].size > 0 %} - -{% endif %} -

For a complete list of posts grouped by category, please see this page.

diff --git a/_layouts/default.html b/_layouts/default.html deleted file mode 100644 index f151314..0000000 --- a/_layouts/default.html +++ /dev/null @@ -1,10 +0,0 @@ -{% include common/header.html %} -
-
- {{ content }} -
-
- {% include common/sidebar.html %} -
-
-{% include common/footer.html %} diff --git a/_layouts/note.html b/_layouts/note.html deleted file mode 100644 index 090100f..0000000 --- a/_layouts/note.html +++ /dev/null @@ -1,6 +0,0 @@ ---- -layout: default ---- -

{{ page.title }}

-
-{{ content }} diff --git a/_layouts/post.html b/_layouts/post.html deleted file mode 100644 index c539244..0000000 --- a/_layouts/post.html +++ /dev/null @@ -1,10 +0,0 @@ ---- -layout: default ---- -

{{ page.title }}

-

-  Posted on {{ page.date | date: '%-d %B %Y' }} - {%- if page.category %} in  {{ page.category }}{% endif %} -

-{{ content }} -
-- cgit v1.2.3