You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.5 KiB
HTML
41 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
{% include 'includes/head.html' %}
|
|
<body>
|
|
<section class="section">
|
|
<div class="container">
|
|
<h1 class="title">
|
|
SuchWowX.
|
|
</h1>
|
|
<p class="subtitle">
|
|
Memes. <strong>Interplanetary</strong>!
|
|
</p>
|
|
<a class="button" href="{{ url_for('meta.index') }}" up-preload up-follow=".container">Go Home</a>
|
|
|
|
{% if meme %}
|
|
<div id="meme">
|
|
<div class="meme" style="padding-top:1em;">
|
|
<p>Meme: {{ meme }}</p>
|
|
<p>Upload path: {{ meme.upload_path }}</p>
|
|
<p>Meta IPFS: {{ meme.meta_ipfs_hash }}</p>
|
|
<p>Meme IPFS: {{ meme.meme_ipfs_hash }}</p>
|
|
<p>Title: {{ meme.title }}</p>
|
|
<p>Description: {{ meme.description }}</p>
|
|
<p>Creator handle: {{ meme.creator_handle }}</p>
|
|
{% if meme.upload_path.endswith('mp4') %}
|
|
<video style="max-height: 60vh!important;max-width:100%;" {% if not request.MOBILE %}autoplay{% else %}controls{% endif %} muted loop>
|
|
<source src="{{ url_for('meta.uploaded_file', filename=meme.upload_path) }}" type="video/mp4">
|
|
Your browser does not support the video tag.
|
|
</video>
|
|
{% else %}
|
|
<img src="{{ url_for('meta.uploaded_file', filename=meme.upload_path) }}"class="img-fluid" style="" />
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
</div>
|
|
</section>
|
|
</body>
|
|
</html>
|