dfm-8.x-1.16/templates/dfm-page.html.twig
templates/dfm-page.html.twig
<!DOCTYPE html>
<html lang="{{ lang }}">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="noindex,nofollow" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>{{ title }}</title>
{% for url in cssUrls %}
<link type="text/css" rel="stylesheet" media="all" href="{{ url }}" />
{% endfor %}
{% for url in jsUrls %}
<script type="text/javascript" src="{{ url }}"></script>
{% endfor %}
{{ head }}
</head>
<body class="dfm">
<script type="text/javascript">
dfm.load(document.body, {{ scriptConf|json_encode()|raw }});
</script>
</body>
</html>
