14 lines
334 B
HTML
14 lines
334 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{% block head %}
|
|
<title>{% block title %}{% endblock %}</title>
|
|
<!-- <link rel="stylesheet" href="style.css"> -->
|
|
<style>{% include "style.css"%}</style>
|
|
<meta name="viewport" content="width=600, height=800" />
|
|
{% endblock %}
|
|
</head>
|
|
<body>
|
|
{% block content %}{% endblock %}
|
|
</body>
|
|
</html> |