diff options
-rw-r--r-- | _config.yml | 2 | ||||
-rw-r--r-- | all/index.html | 4 | ||||
-rw-r--r-- | c++/index.html | 4 | ||||
-rw-r--r-- | categories/c++/index.html | 4 | ||||
-rw-r--r-- | categories/haskell/index.html | 4 | ||||
-rw-r--r-- | categories/math/index.html | 4 | ||||
-rw-r--r-- | haskell/index.html | 4 | ||||
-rw-r--r-- | math/index.html | 4 |
8 files changed, 15 insertions, 15 deletions
diff --git a/_config.yml b/_config.yml index 522e3cb..017a4a1 100644 --- a/_config.yml +++ b/_config.yml @@ -51,7 +51,7 @@ repository: egor-tensin/blog # jekyll-paginate paginate: 10 # jekyll-remote-theme -remote_theme: egor-tensin/jekyll-theme@78b543203d6f0c7d670432d17d38f493b4473c5a +remote_theme: egor-tensin/jekyll-theme@e43991ee15f4166f0e88938d050b28e3d1d05afa # Theme settings settings: diff --git a/all/index.html b/all/index.html index a7d2781..6f8668b 100644 --- a/all/index.html +++ b/all/index.html @@ -1,7 +1,7 @@ --- -title: All posts +title: Archive layout: default -navbar_link: <span class="glyphicon glyphicon-th-list"></span> Posts +navbar_link: <span class="glyphicon glyphicon-th-list"></span> Archive navbar_priority: 2 --- {% include categories/categories.html %} diff --git a/c++/index.html b/c++/index.html new file mode 100644 index 0000000..68785f6 --- /dev/null +++ b/c++/index.html @@ -0,0 +1,4 @@ +--- +title: C++ +--- +{% include categories/category.html category=page.title archive_link='/all/' %} diff --git a/categories/c++/index.html b/categories/c++/index.html deleted file mode 100644 index ae41976..0000000 --- a/categories/c++/index.html +++ /dev/null @@ -1,4 +0,0 @@ ---- -title: C++ ---- -{% include categories/category.html category=page.title %} diff --git a/categories/haskell/index.html b/categories/haskell/index.html deleted file mode 100644 index d2a1e89..0000000 --- a/categories/haskell/index.html +++ /dev/null @@ -1,4 +0,0 @@ ---- -title: Haskell ---- -{% include categories/category.html category=page.title %} diff --git a/categories/math/index.html b/categories/math/index.html deleted file mode 100644 index 1fb0ad0..0000000 --- a/categories/math/index.html +++ /dev/null @@ -1,4 +0,0 @@ ---- -title: Math ---- -{% include categories/category.html category=page.title %} diff --git a/haskell/index.html b/haskell/index.html new file mode 100644 index 0000000..5bc1777 --- /dev/null +++ b/haskell/index.html @@ -0,0 +1,4 @@ +--- +title: Haskell +--- +{% include categories/category.html category=page.title archive_link='/all/' %} diff --git a/math/index.html b/math/index.html new file mode 100644 index 0000000..4678e90 --- /dev/null +++ b/math/index.html @@ -0,0 +1,4 @@ +--- +title: Math +--- +{% include categories/category.html category=page.title archive_link='/all' %} |