14 lines
366 B
HTML
14 lines
366 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<title>{% block title %}{% endblock title %}Nomilo</title>
|
||
|
<link rel="stylesheet" type="text/css" href="/styles/main.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
{% block content %}{% endblock content %}
|
||
|
{% block scripts %}{% endblock scripts %}
|
||
|
</body>
|
||
|
</html>
|