File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -22,16 +22,16 @@ Usage:
22
22
{% else %}
23
23
{% if categories_list.first[0] == null %}
24
24
{% for category in categories_list %}
25
- <li><a href="{{ BASE_PATH }}{{ site.JB.categories_path }} #{{ category }}-ref">
25
+ <li><a href="#{{ category }}-ref">
26
26
{{ category | join: "/" }} <span>{{ site.categories[category].size }}</span>
27
27
</a></li>
28
28
{% endfor %}
29
29
{% else %}
30
30
{% for category in categories_list %}
31
- <li><a href="{{ BASE_PATH }}{{ site.JB.categories_path }} #{{ category[0] }}-ref">
31
+ <li><a href="#{{ category[0] }}-ref">
32
32
{{ category[0] | join: "/" }} <span>{{ category[1].size }}</span>
33
33
</a></li>
34
34
{% endfor %}
35
35
{% endif %}
36
36
{% endif %}
37
- {% assign categories_list = nil %}
37
+ {% assign categories_list = nil %}
Original file line number Diff line number Diff line change @@ -22,11 +22,11 @@ Usage:
22
22
{% else %}
23
23
{% if tags_list.first[0] == null %}
24
24
{% for tag in tags_list %}
25
- <li><a href="{{ BASE_PATH }}{{ site.JB.tags_path }} #{{ tag }}-ref">{{ tag }} <span>{{ site.tags[tag].size }}</span></a></li>
25
+ <li><a href="#{{ tag }}-ref">{{ tag }} <span>{{ site.tags[tag].size }}</span></a></li>
26
26
{% endfor %}
27
27
{% else %}
28
28
{% for tag in tags_list %}
29
- <li><a href="{{ BASE_PATH }}{{ site.JB.tags_path }} #{{ tag[0] }}-ref">{{ tag[0] }} <span>{{ tag[1].size }}</span></a></li>
29
+ <li><a href="#{{ tag[0] }}-ref">{{ tag[0] }} <span>{{ tag[1].size }}</span></a></li>
30
30
{% endfor %}
31
31
{% endif %}
32
32
{% endif %}
You can’t perform that action at this time.
0 commit comments