diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2019-09-30 14:15:53 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2019-09-30 14:15:53 +0300 |
commit | 2ae67861912d3c4823e51924fd6c8b605424b1f7 (patch) | |
tree | 9e0c7476b039f4d16a63753d422b1643f96d82f5 /categories.html | |
parent | import latex.tex from egor-tensin/notes.git (diff) | |
download | jekyll-theme-2ae67861912d3c4823e51924fd6c8b605424b1f7.tar.gz jekyll-theme-2ae67861912d3c4823e51924fd6c8b605424b1f7.zip |
categories.html: fix broken links
Diffstat (limited to '')
-rw-r--r-- | categories.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/categories.html b/categories.html index a8a9023..876992f 100644 --- a/categories.html +++ b/categories.html @@ -7,7 +7,7 @@ navbar_link: <span class="glyphicon glyphicon-th-list"></span> Categories navbar_priority: 2 --- {% 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 }}/{{ category[0] | slugify: 'pretty' }}">{{ category[0] }}</a></h1> <ul> {% for post in category[1] %} <li><a href="{{ site.baseurl }}{{ post.url }}">{{ post.date | date: "%Y-%m-%d" }} — {{ post.title }}</a></li> |