Merge pull request 'Fix inadvertent double slash' (#23) from fix-article-urls into main
Reviewed-on: #23
This commit is contained in:
commit
bc02087612
2 changed files with 2 additions and 2 deletions
|
@ -21,7 +21,7 @@
|
|||
</div>
|
||||
<div class="content">
|
||||
<span class="date">{{ article.date.human }}</span>
|
||||
<a href="/{{ article.url }}">{{ article.title }}</a><br />
|
||||
<a href="{{ article.url }}">{{ article.title }}</a><br />
|
||||
<p>{{ article.description }}</p>
|
||||
<div class="bottom">
|
||||
<ul class="tags-list">
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
</h3>
|
||||
<ul>
|
||||
{%- for article in tag.articles -%}
|
||||
<li><a href="/{{ article.url }}">{{ article.title }}</a></li>
|
||||
<li><a href="{{ article.url }}">{{ article.title }}</a></li>
|
||||
{%- endfor -%}
|
||||
</ul>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue