aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2019-09-30 14:15:53 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2019-09-30 14:15:53 +0300
commit2ae67861912d3c4823e51924fd6c8b605424b1f7 (patch)
tree9e0c7476b039f4d16a63753d422b1643f96d82f5
parentimport latex.tex from egor-tensin/notes.git (diff)
downloadjekyll-theme-2ae67861912d3c4823e51924fd6c8b605424b1f7.tar.gz
jekyll-theme-2ae67861912d3c4823e51924fd6c8b605424b1f7.zip
categories.html: fix broken links
-rw-r--r--categories.html2
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>&nbsp;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" }} &mdash; {{ post.title }}</a></li>