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.
34 lines
1001 B
HTML
34 lines
1001 B
HTML
3 years ago
|
<!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-target=".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>
|
||
|
<img src="{{ url_for('meta.uploaded_file', filename=meme.upload_path) }}">
|
||
|
</div>
|
||
|
</div>
|
||
|
{% endif %}
|
||
|
|
||
|
</div>
|
||
|
</section>
|
||
|
</body>
|
||
|
</html>
|