15 lines
No EOL
434 B
Twig
15 lines
No EOL
434 B
Twig
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
{% block head %}
|
|
<!--link rel="stylesheet" href="style.css"/-->
|
|
<title>{% block title %}{% endblock %}</title>
|
|
{% endblock %}
|
|
</head>
|
|
<body>
|
|
<div id="content">{% block content %}{% endblock %}</div>
|
|
<div id="footer">{% block footer %}{% endblock %}</div>
|
|
</body>
|
|
</html> |