Add absolute links in some places

This commit is contained in:
nukeop 2017-01-05 23:50:36 +01:00
parent 8979a16882
commit ada370e59a

View file

@ -4,7 +4,7 @@
{% if quotes %} {% if quotes %}
{% for quote in quotes %} {% for quote in quotes %}
<div class="quote-header"> <div class="quote-header">
<a class="quote-link" href="quote/{{ quote.id }}">#{{ quote.id }}</a> <a class="quote-link" href="/quote/{{ quote.id }}">#{{ quote.id }}</a>
<a class="rate-positive">+</a> ({{quote.rating}}) <a class="rate-negative">-</a> <a class="rate-positive">+</a> ({{quote.rating}}) <a class="rate-negative">-</a>
<div class="pull-right quote-date">{{ quote.time }}</div> <div class="pull-right quote-date">{{ quote.time }}</div>
@ -25,7 +25,7 @@
Tags: Tags:
{% for tag in quote.tags %} {% for tag in quote.tags %}
<a href="tag/{{tag.name}}" class="badge"> {{tag.name}} </a> <a href="/tag/{{tag.name}}" class="badge"> {{tag.name}} </a>
{% endfor %} {% endfor %}
</div> </div>