diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2019-09-30 15:04:29 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2019-09-30 15:04:29 +0300 |
commit | e909f3ff43855634b81d3bd487b073ea35e1aaa3 (patch) | |
tree | bc4b981f8a4ab15aa316d750bc12f416702b9f4d /all | |
parent | sort notes by title (diff) | |
download | jekyll-theme-e909f3ff43855634b81d3bd487b073ea35e1aaa3.tar.gz jekyll-theme-e909f3ff43855634b81d3bd487b073ea35e1aaa3.zip |
move categories pages to /categories/
Diffstat (limited to 'all')
-rw-r--r-- | all/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/all/index.html b/all/index.html index 9ba7848..71e24f2 100644 --- a/all/index.html +++ b/all/index.html @@ -7,7 +7,7 @@ navbar_priority: 2 --- {% if site.categories.size != 0 %} {% for category in site.categories %} - <h1><a class="category" href="{{ site.baseurl }}/{{ category[0] | slugify: 'pretty' }}">{{ category[0] }}</a></h1> + <h1><a class="category" href="{{ site.baseurl }}/categories/{{ category[0] | slugify: 'pretty' }}">{{ category[0] }}</a></h1> <hr/> <ul> {% for post in category[1] %} |