17 lines
536 B
HTML
17 lines
536 B
HTML
{% extends "content.html" %}
|
|
|
|
{% block title %}🫐arts - artberry🫐{% endblock %}
|
|
|
|
{% block content %}
|
|
<section class="gallery">
|
|
{% for image in images %}
|
|
<div class="card">
|
|
<a href="{{ url_for('view', content_type='art', id=image.id) }}" class="card-link">
|
|
<img src="{{ url_for('static', filename='arts/' + image.image_file) }}" alt="Art Image" class="art-image">
|
|
<p>{{ image.cookie_votes }} 🍪</p>
|
|
</a>
|
|
</div>
|
|
{% endfor %}
|
|
</section>
|
|
{% endblock %}
|