mirror of
https://github.com/bitwarden/help
synced 2025-12-06 00:03:30 +00:00
more baseurl
This commit is contained in:
@@ -15,7 +15,7 @@ layout: default
|
||||
{% assign catFilename = category.path | filename %}
|
||||
{% if page.categories contains catFilename %}
|
||||
{% assign catIteration = catIteration | plus: 1 %}
|
||||
<a href="{{category.url}}">{{category.title}}</a>{% if catIteration != catSize %}, {% endif %}
|
||||
<a href="{{site.baseurl}}{{category.url}}">{{category.title}}</a>{% if catIteration != catSize %}, {% endif %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
@@ -14,7 +14,7 @@ layout: default
|
||||
{% for article in sorted_articles %}
|
||||
{% assign pageFilename = page.path | filename %}
|
||||
{% if article.categories contains pageFilename and article.hidden != true %}
|
||||
<li><a href="{{article.url}}">{{article.title}}</a></li>
|
||||
<li><a href="{{site.baseurl}}{{article.url}}">{{article.title}}</a></li>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</ol>
|
||||
|
||||
@@ -17,7 +17,7 @@ title: Help Center
|
||||
{% if article.popular == true and article.hidden != true %}
|
||||
<li>
|
||||
<i class="fa-li fa fa-file-text-o"></i>
|
||||
<a href="{{article.url}}">{{article.title}}</a>
|
||||
<a href="{{site.baseurl}}{{article.url}}">{{article.title}}</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
@@ -29,7 +29,7 @@ title: Help Center
|
||||
<div class="panel panel-default articles">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">
|
||||
<a href="{{category.url}}">
|
||||
<a href="{{site.baseurl}}{{category.url}}">
|
||||
<i class="fa fa-folder-open-o"></i> {{category.title}}
|
||||
</a>
|
||||
</h3>
|
||||
@@ -41,7 +41,7 @@ title: Help Center
|
||||
{% if article.categories contains catFilename and article.hidden != true %}
|
||||
<li>
|
||||
<i class="fa-li fa fa-file-text-o"></i>
|
||||
<a href="{{article.url}}">{{article.title}}</a>
|
||||
<a href="{{site.baseurl}}{{article.url}}">{{article.title}}</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
@@ -62,7 +62,7 @@ title: Help Center
|
||||
{% for category in site.categories %}
|
||||
{% if category.hidden != true %}
|
||||
<li>
|
||||
<a href="{{category.url}}">{{category.title}}</a>
|
||||
<a href="{{site.baseurl}}{{category.url}}">{{category.title}}</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
|
||||
Reference in New Issue
Block a user