fix(widget): translate profile widget counter links to abs url

This commit is contained in:
ppoffice 2019-11-13 10:03:33 -05:00
parent f0fcff0a4d
commit 7363454e10
1 changed files with 3 additions and 3 deletions

View File

@ -43,7 +43,7 @@
<p class="heading">
<%= _p('common.post', post_count()) %>
</p>
<a href="/archives">
<a href="<%= url_for('/archives') %>">
<p class="title has-text-weight-normal">
<%= post_count() %>
</p>
@ -55,7 +55,7 @@
<p class="heading">
<%= _p('common.category', category_count()) %>
</p>
<a href="/categories">
<a href="<%= url_for('/categories') %>">
<p class="title has-text-weight-normal">
<%= category_count() %>
</p>
@ -67,7 +67,7 @@
<p class="heading">
<%= _p('common.tag', tag_count()) %>
</p>
<a href="/tags">
<a href="<%= url_for('/tags') %>">
<p class="title has-text-weight-normal">
<%= tag_count() %>
</p>