Skip to content

Commit bcd621e

Browse files
authored
repo sync
2 parents bd85fe2 + d7e14c3 commit bcd621e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

includes/all-articles.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ <h2 class="font-mktg mb-4">All {{ product.title }} docs</h2>
88
{% for category in product.categories %}
99
{% unless category[1].standalone %}
1010
<div class="col-12 col-lg-4 mb-6 height-full">
11-
<h4 class="mb-3"><a href="/{{ currentLanguage }}{{ category[1].href }}">{{ category[1].title }}</a></h4>
11+
<h4 class="mb-3"><a href="{{ category[1].href }}">{{ category[1].title }}</a></h4>
1212

1313
{% if category[1].maptopics %}
1414
<ul class="list-style-none">
1515
{% for maptopic in category[1].maptopics %}
1616
{% unless maptopic[1].hidden %}
1717
{% assign numArticles = category[1].maptopics | obj_size %}
1818
<li class="mb-3 {% if forloop.index > maxArticles %}d-none{% endif %}">
19-
<a href="/{{ currentLanguage }}{{ maptopic[1].href }}">
19+
<a href="{{ maptopic[1].href }}">
2020
{{ maptopic[1].title }}
2121
</a>
2222
</li>
@@ -30,7 +30,7 @@ <h4 class="mb-3"><a href="/{{ currentLanguage }}{{ category[1].href }}">{{ categ
3030
<ul class="list-style-none">
3131
{% assign numArticles = category[1].articles | obj_size %}
3232
{% for article in category[1].articles %}
33-
<li class="mb-3 {% if forloop.index > maxArticles %}d-none{% endif %}"><a href="/{{ currentLanguage }}{{ article[1].href }}">{{ article[1].title }}</a></li>
33+
<li class="mb-3 {% if forloop.index > maxArticles %}d-none{% endif %}"><a href="{{ article[1].href }}">{{ article[1].title }}</a></li>
3434
{% endfor %}
3535
</ul>
3636
{% if numArticles > maxArticles %}

0 commit comments

Comments
 (0)