22 lines
711 B
HTML
22 lines
711 B
HTML
<link rel="icon" href="{{ url_for('static', filename='artberry.ico') }}" type="image/x-icon">
|
|
|
|
{% extends "content.html" %}
|
|
|
|
{% block title %}🫐comics - artberry🫐{% endblock %}
|
|
|
|
{% block content %}
|
|
<section class="gallery">
|
|
{% for comic in comics %}
|
|
<div class="card comic-card">
|
|
<a href="{{ url_for('view', content_type='comic', id=comic.id) }}">
|
|
<img src="{{ url_for('static', filename='comicthumbs/' + comic.comic_thumbnail_file) }}" alt="Comic Thumbnail">
|
|
</a>
|
|
<p>{{ comic.name }}</p>
|
|
<p>{{ comic.cookie_votes }} 🍪</p>
|
|
</div>
|
|
{% else %}
|
|
<p>No comics found</p>
|
|
{% endfor %}
|
|
</section>
|
|
{% endblock %}
|