Compare commits

..

No commits in common. "bc02087612e4efe079ebc56cf0c329c99c33d5ee" and "4a4c22e24416358667e656c14dcfb9289c0ab132" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View file

@ -21,7 +21,7 @@
</div> </div>
<div class="content"> <div class="content">
<span class="date">{{ article.date.human }}</span> <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> <p>{{ article.description }}</p>
<div class="bottom"> <div class="bottom">
<ul class="tags-list"> <ul class="tags-list">

View file

@ -13,7 +13,7 @@
</h3> </h3>
<ul> <ul>
{%- for article in tag.articles -%} {%- for article in tag.articles -%}
<li><a href="{{ article.url }}">{{ article.title }}</a></li> <li><a href="/{{ article.url }}">{{ article.title }}</a></li>
{%- endfor -%} {%- endfor -%}
</ul> </ul>
</div> </div>