21 lines
449 B
HTML
21 lines
449 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
{% for file in style %}
|
|
<link type="text/css" rel="stylesheet" href="{{ file }}"/>
|
|
{% endfor %}
|
|
</head>
|
|
<body>
|
|
{% if content %}
|
|
{{ content }}
|
|
{% endif %}
|
|
|
|
{% for file in script %}
|
|
<script type="text/javascript" src="{{ file.name }}"></script>
|
|
{% endfor %}
|
|
</body>
|
|
</html>
|
|
|
|
|