linux-questionnaire/views/layout.html.twig
2015-03-02 20:07:17 +01:00

21 lines
428 B
Twig

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{% block title %}{% endblock %}</title>
{% block stylesheets %}
{% for asset in assets %}
<link href="{{ asset }}" rel="stylesheet">
{% endfor %}
{% endblock %}
</head>
<body>
{% block body %}{% endblock %}
{% block javascripts %}
{% for asset in assets %}
<script src="{{ asset }}"></script>
{% endfor %}
{% endblock %}
</body>
</html>