fix prev next arrows
This commit is contained in:
parent
0b23c83998
commit
223e744d6d
|
@ -20,7 +20,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="wrapper">
|
<div class="wrapper">
|
||||||
<div class="medium">
|
<div class="medium">
|
||||||
{% if next != null %}<a id="next" href="/{{ next }}"></a>{% endif %}
|
{% if next != null %}<a href="/{{ next }}"><i class="fa fa-arrow-left" aria-hidden="true"></i></a>{% endif %}
|
||||||
{% if item == "video" %}
|
{% if item == "video" %}
|
||||||
<video id="my-video" class="video-js" src="{{ dest }}" preload="auto" height="360" width="640" controls autoplay loop data-setup="{}"></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" %}
|
{% elseif item == "audio" %}
|
||||||
|
@ -30,14 +30,14 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<audio id="my-video" class="video-js audiojs" controls loop src="{{ dest }}" data-setup="{}" poster="{% if thumb !== null %}{{ thumb }}{% else %}/s/pingu.gif{% endif %}" type="audio/mp3" ></audio>
|
<audio id="my-video" class="video-js audiojs" controls loop src="{{ dest }}" data-setup="{}" poster="{% if thumb !== null %}{{ thumb }}{% else %}/s/pingu.gif{% endif %}" type="audio/mp3" ></audio>
|
||||||
{% if thumb != null %}
|
{% if thumb != null %}
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% elseif item == "image" %}
|
{% elseif item == "image" %}
|
||||||
<a href="{{ dest }}" target="_blank"><img src="{{ dest }}" style="max-width: 640px;height:auto;" /></a>
|
<a href="{{ dest }}" target="_blank"><img src="{{ dest }}" style="max-width: 640px;height:auto;" /></a>
|
||||||
{% else %}
|
{% else %}
|
||||||
<h1>404 - Not f0cked</h1>
|
<h1>404 - Not f0cked</h1>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if prev != null %}<a id="prev" href="/{{ prev }}"></a>{% endif %}
|
{% if prev != null %}<a href="/{{ prev }}"><i class="fa fa-arrow-right" aria-hidden="true"></i></a>{% endif %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -76,14 +76,6 @@ a#next, a#prev {
|
||||||
align-content: inherit;
|
align-content: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
a#prev::after {
|
|
||||||
content: "\f177";
|
|
||||||
}
|
|
||||||
|
|
||||||
a#next::after {
|
|
||||||
content: "\f178";
|
|
||||||
}
|
|
||||||
|
|
||||||
.van {
|
.van {
|
||||||
border: 0;
|
border: 0;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user