basic page rendering
This commit is contained in:
parent
4f5bd76f8a
commit
321cbee134
7 changed files with 117 additions and 29 deletions
13
photoalbum/skel/_templates/base.html
Normal file
13
photoalbum/skel/_templates/base.html
Normal 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue