rpiwebapp-public/templates/comicView.html

10 lines
441 B
HTML
Raw Normal View History

2019-07-06 23:00:00 -07:00
{% 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">
2019-07-06 23:00:00 -07:00
{% endblock %}