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
823 B
HTML

<!DOCTYPE html>
<html>
{% include 'includes/head.html' %}
<body>
<section class="section">
<div class="container">
{% include 'includes/navbar.html' %}
{% if request.args.get('ipfs_error') %}
<div class="screen">
<p>
You can run your own local IPFS instance and maintain metadata and artwork,
try installing the software and running the following:
</p>
<code>$ ipfs daemon</code>
</div>
{% endif %}
{% if memes %}
{% for _meme in memes | batch(4) %}
<div class="columns">
{% for meme in _meme %}
{% include 'includes/meme_card.html' %}
{% endfor %}
</div>
{% endfor %}
{% endif %}
</div>
</section>
{% include 'includes/footer.html' %}
</body>
</html>