Add initial setup and admin page
This commit is contained in:
17
templates/_basic.html.tera
Normal file
17
templates/_basic.html.tera
Normal file
@@ -0,0 +1,17 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
{% block head %}
|
||||
<meta charset="utf-8">
|
||||
<title>{% block title %}{% endblock title %}</title>
|
||||
<link href="style.css" rel="stylesheet" />
|
||||
{% endblock head %}
|
||||
</head>
|
||||
<body>
|
||||
{% block body %}
|
||||
<div id="header">{% block header %}{% endblock header %}</div>
|
||||
<div id="content">{% block content %}{% endblock content %}</div>
|
||||
<div id="footer">{% block footer %}{% endblock footer %}</div>
|
||||
{% endblock body %}
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user