This commit is contained in:
Robo
2016-08-17 23:05:48 +02:00
4 changed files with 15 additions and 9 deletions

View File

@ -11,15 +11,15 @@
<div class="medium">
{% if item == "video" %}
<video src="{{ dest }}" style="max-width: 1024px" autoplay controls loop></video>
{% else if item == "audio" %}
{% elseif item == "audio" %}
<audio controls src="{{ dest }}" type="audio/mp3" autoplay></audio>
{% else if item == "image" %}
{% elseif item == "image" %}
<a href="{{ dest }}" target="_blank"><img src="{{ dest }}" style="max-width: 1024px" /></a>
{% else %}
<h1>404 - Not f0cked</h1>
{% endif %}
</div>
<div class="controls">{% if next != null %}<a id="next" href="/{{ next }}"><<-</a> | {% endif %} <a id="random" href="/random" title="Random">random</a> {% if prev != null %} | <a id="prev" href="/{{ prev }}">->></a>{% endif %}</div><br />
<div class="controls">{% if last != null %}<a id="last" href="/{{ last }}"><- newest</a>{% endif %}{% if next != null %}<a id="next" href="/{{ next }}"><<-</a> | {% endif %} <a id="random" href="/random" title="Random">random</a> {% if prev != null %} | <a id="prev" href="/{{ prev }}">->></a>{% endif %}{% if first != null %}<a id="first" href="/{{ first }}">oldest -></a>{% endif %}</div><br />
<div class="info">
<span class="src">src: <a href="{{ src }}" target="_blank">{{ src }}</a></span><br />
<span class="dest">dest: {{ dest }}</span><br />