Matthew Welch
2f855db067
Comics can be opened and read. Thumbnails for each comics are now stored in the database. Some files have been renamed for clarification.
16 lines
307 B
HTML
16 lines
307 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{{ title }}</title>
|
|
<link rel="icon" type="image/png" href="../static/icon.png" sizes="32x32">
|
|
{% block head %}
|
|
{% endblock %}
|
|
</head>
|
|
<body>
|
|
{% block content %}
|
|
<p>Hello World!</p>
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|