Comics can be opened and read. Thumbnails for each comics are now stored in the database. Some files have been renamed for clarification.
10 lines
441 B
HTML
10 lines
441 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
|
|
<a id="prev-button" href="{{ prev_url }}" style="position: fixed; height: 100%; width: 50%; text-align: center"></a>
|
|
<a id="next-button" href="{{ next_url }}" style="position: fixed; right: 0; height: 100%; width: 50%; text-align: center"></a>
|
|
<img id="comic-page" src="data:image/jpeg;base64,{{ page }}" alt="" style="height: 100vh; display: block; margin: auto">
|
|
|
|
{% endblock %}
|