mirror of
https://github.com/monero-project/monero-site.git
synced 2024-11-17 08:18:03 +00:00
Merge pull request #618 from leonklingele/fix-baseurl-posturl
Fix links by removing slash between site.baseurl and post.url
This commit is contained in:
commit
62bfe04669
2 changed files with 2 additions and 2 deletions
|
@ -114,7 +114,7 @@
|
|||
{% for post in site.posts limit:2 %}
|
||||
<div class="row start-xs">
|
||||
<div class="col">
|
||||
<p><a href="{{site.baseurl}}/{{ post.url }}">{{ post.title }}</a></p>
|
||||
<p><a href="{{site.baseurl}}{{ post.url }}">{{ post.title }}</a></p>
|
||||
</div>
|
||||
</div>
|
||||
{% endfor %}
|
||||
|
|
|
@ -119,7 +119,7 @@
|
|||
{% for post in site.posts limit:2 %}
|
||||
<div class="row start-xs">
|
||||
<div class="col">
|
||||
<p><a href="{{site.baseurl}}/{{ post.url }}">{{ post.title }}</a></p>
|
||||
<p><a href="{{site.baseurl}}{{ post.url }}">{{ post.title }}</a></p>
|
||||
</div>
|
||||
</div>
|
||||
{% endfor %}
|
||||
|
|
Loading…
Reference in a new issue