fix wrong prev next order

wtf are those indentations even
This commit is contained in:
jkhsjdhjs 2017-10-21 05:15:13 +02:00
parent 2eeda2c156
commit 0b23c83998

View File

@ -20,7 +20,7 @@
</div>
<div class="wrapper">
<div class="medium">
{% if prev != null %}<a id="prev" href="/{{ prev }}"></a>{% endif %}
{% if next != null %}<a id="next" href="/{{ next }}"></a>{% endif %}
{% if item == "video" %}
<video id="my-video" class="video-js" src="{{ dest }}" preload="auto" height="360" width="640" controls autoplay loop data-setup="{}"></video>
{% elseif item == "audio" %}
@ -37,7 +37,7 @@
{% else %}
<h1>404 - Not f0cked</h1>
{% endif %}
{% if next != null %}<a id="next" href="/{{ next }}"></a>{% endif %}
{% if prev != null %}<a id="prev" href="/{{ prev }}"></a>{% endif %}
</div>
</div>