Added users so that the site can only be used if logged in. Thumbnails for each comic are also generated with ImageMagick.
10 lines
340 B
HTML
10 lines
340 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
|
|
<a href="{{ prev_url }}" style="position: fixed; height: 100%; width: 50%;"></a>
|
|
<a href="{{ next_url }}" style="position: fixed; right: 0; height: 100%; width: 50%;"></a>
|
|
<img class="comic-page" src="/comics/get_comic/{{ comic["id"] }}/{{ page_number }}" alt="">
|
|
|
|
{% endblock %}
|