rpiwebapp-public/templates/base.html
Matthew Welch 2f855db067 Comics can be read
Comics can be opened and read. Thumbnails for each comics are now stored in the database. Some files have been renamed for clarification.
2019-07-11 17:35:30 -07:00

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>