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.
60 lines
2.1 KiB
HTML
60 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
{% include 'includes/head.html' %}
|
|
<body>
|
|
<section class="section">
|
|
<div class="container">
|
|
{% include 'includes/navbar.html' %}
|
|
|
|
{% if memes %}
|
|
{% for _meme in memes | batch(4) %}
|
|
<div class="columns">
|
|
|
|
{% for meme in _meme %}
|
|
<div class="card">
|
|
<div class="card-image">
|
|
<figure class="image">
|
|
<a href="{{ url_for('meme.show', meme_id=meme.id) }}" up-preload up-follow=".container">
|
|
{% if meme.file_name.endswith('mp4') %}
|
|
<video class="img-fluid" {% if not request.MOBILE %}autoplay{% else %}controls{% endif %} muted loop>
|
|
<source src="{{ url_for('meta.uploaded_file', filename=meme.file_name) }}" type="video/mp4">
|
|
Your browser does not support the video tag.
|
|
</video>
|
|
{% else %}
|
|
<img alt="{{ meme.title }}" src="{{ url_for('meta.uploaded_file', filename=meme.file_name) }}" width="200px" class="img-fluid" style="" />
|
|
{% endif %}
|
|
</a>
|
|
</figure>
|
|
</div>
|
|
<div class="card-content">
|
|
<div class="media">
|
|
<div class="media-left">
|
|
<!-- <figure class="image is-48x48">
|
|
<img src="https://bulma.io/images/placeholders/96x96.png" alt="Placeholder image">
|
|
</figure> -->
|
|
</div>
|
|
<div class="media-content">
|
|
<p class="title is-4">John Smith</p>
|
|
<p class="subtitle is-6">@johnsmith</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="content">
|
|
{{ meme.description }}
|
|
<br>
|
|
<time datetime="2016-1-1">{{ meme.create_date.strftime('%H:%M UTC - %d %b %Y') }}</time>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endfor %}
|
|
</div>
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
</div>
|
|
</section>
|
|
{% include 'includes/footer.html' %}
|
|
</body>
|
|
</html>
|