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

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