f0ckv1/s/item.tpl.html

54 lines
2.0 KiB
HTML
Raw Normal View History

2016-10-21 21:37:40 +00:00
<!doctype blah>
2016-10-19 14:41:05 +00:00
<html>
<head>
<title>{{ id }} - f0ck.me</title>
2016-10-20 21:07:09 +00:00
<link rel="stylesheet" type="text/css" href="./s/stylo.css">
2016-10-19 14:41:05 +00:00
<link rel="stylesheet" type="text/css" href="./s/style.css">
2016-11-06 02:02:13 +00:00
<link rel="icon" type="image/gif" href="./s/favicon.gif" />
2016-10-19 14:41:05 +00:00
</head>
<body>
2016-10-19 14:45:24 +00:00
<div class="return"><a href="/" title="return to main">f0ck.me</a></div>
2016-10-21 21:37:40 +00:00
<div class="controls">
{% if next != null %}
<a id="next" href="/{{ next }}"><<-</a>&nbsp;|&nbsp;
{% endif %}
2016-11-04 01:49:14 +00:00
<a id="random" href="/random">random</a>&nbsp;
2016-10-21 21:37:40 +00:00
{% if prev != null %}
&nbsp;| <a id="prev" href="/{{ prev }}">->></a>
{% endif %}
</div>
<div class="medium">
2016-10-20 23:14:03 +00:00
{% if item == "video" %}
<video id="player" src="{{ dest }}" style="max-width: 1280px; height: 50%;" preload="auto" autoplay controls loop></video>
{% elseif item == "audio" %}
2016-10-21 21:37:40 +00:00
{% if thumb != null %}
2016-10-21 21:43:02 +00:00
<div>
2016-10-21 21:41:05 +00:00
<img src="{{ thumb }}" /><br />
{% endif %}
<audio id="player" controls loop src="{{ dest }}" type="audio/mp3" autoplay></audio>
{% if thumb != null %}
</div>
2016-10-21 21:37:40 +00:00
{% endif %}
2016-10-19 14:41:05 +00:00
{% elseif item == "image" %}
2016-10-22 15:45:59 +00:00
<a href="{{ dest }}" target="_blank"><img src="{{ dest }}" style="max-width: 640px;height:auto;" /></a>
2016-10-19 14:41:05 +00:00
{% else %}
<h1>404 - Not f0cked</h1>
{% endif %}
2016-10-21 21:37:40 +00:00
<div class="panel info">
<span class="id">ID: {{ id }} | by: {{ username }}<span></span><br />
2016-11-04 01:18:32 +00:00
<span class="src">src: <a id="holland" href="{{ srcurl }}" target="_blank">{{ src }}</a></span><br />
2016-10-21 21:37:40 +00:00
<span class="dest">dest: {{ dest }}</span><br />
<span class="mime">mime: {{ mime }}</span>&nbsp;<br />
<span class="size">size: {{ size }}</span><br />
<span class="channel">channel: {{ userchannel }}</span>&nbsp;
<span class="network">network: {{ usernetwork }}</span><br>
<span class="timestamp">timestamp: {{ timestamp }}</span>
2016-11-05 17:44:52 +00:00
<span id="themes">theme: </span>
2016-10-21 21:37:40 +00:00
</div>
</div>
2016-11-06 01:11:53 +00:00
<script src="./s/shit.js"></script>
<script src="./s/theme.js"></script>
2016-10-19 14:41:05 +00:00
</body>
2016-10-22 15:39:20 +00:00
</html>