28 lines
981 B
HTML
28 lines
981 B
HTML
{% extends "content.html" %}
|
|
|
|
{% block title %}🫐videos - artberry🫐{% endblock %}
|
|
|
|
{% block content %}
|
|
<section class="gallery">
|
|
{% for video in videos %}
|
|
<div class="card video-card">
|
|
<a href="{{ url_for('view', content_type='video', id=video.id) }}">
|
|
<img src="{{ url_for('static', filename='thumbnails/' + video.video_thumbnail_file) }}" alt="Video Thumbnail" class="video-thumbnail">
|
|
</a>
|
|
<p class="video-title">{{ video.video_name }}</p>
|
|
|
|
<p>{{ video.cookie_votes }} 🍪</p>
|
|
</div>
|
|
{% endfor %}
|
|
</section>
|
|
|
|
<div class="pagination">
|
|
{% if pagination.has_prev %}
|
|
<a href="{{ url_for('videos', page=pagination.prev_num, search=search_query) }}" class="button">Previous</a>
|
|
{% endif %}
|
|
{% if pagination.has_next %}
|
|
<a href="{{ url_for('videos', page=pagination.next_num, search=search_query) }}" class="button">Next</a>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %}
|