hbbs.decentral1.se/hbbs/templates/layout.html

24 lines
503 B
HTML
Raw Normal View History

2020-04-04 18:55:53 +02:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
2020-04-04 20:09:24 +02:00
<title>hbbs.decentral1.se</title>
2020-04-04 18:55:53 +02:00
<link
rel="stylesheet"
href="/static/styles.css"
type="text/css"
media="screen"
/>
2020-04-04 19:37:38 +02:00
<link rel="icon" href="/static/images/favicon.ico" />
2020-04-04 18:55:53 +02:00
</head>
<body>
2020-04-04 20:09:24 +02:00
<div id="navigation">
<p>TODO:navbar</p>
</div>
<div id="content">
{% block content %}{% endblock %}
</div>
2020-04-04 18:55:53 +02:00
</body>
</html>