basic page rendering

This commit is contained in:
Nick Pegg 2024-08-03 18:02:02 -07:00
parent 4f5bd76f8a
commit 321cbee134
7 changed files with 117 additions and 29 deletions

View file

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="{{ static_dir }}/index.css" type="text/css">
<title>My Photos</title>
</head>
<body>
{% block content %}
{% endblock %}
</body>
</html>