33 lines
No EOL
984 B
Twig
Executable file
33 lines
No EOL
984 B
Twig
Executable file
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
|
|
<title>{% block title %}Terminverwaltung Calcifer{% endblock %}</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="shortcut icon" href="/favicon.png" />
|
|
<link href="/semantic/dist/semantic.css" rel="stylesheet">
|
|
{% stylesheets filter="compass"
|
|
"@CalciferBundle/Resources/assets/css/main.scss"
|
|
"css/custom.scss"
|
|
%}
|
|
<link rel="stylesheet" href="{{ asset_url }}"/>
|
|
{% endstylesheets %}
|
|
{% block css %}
|
|
|
|
{% endblock %}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
{% include "CalciferBundle::navigation.html.twig" %}
|
|
|
|
<div id="main">
|
|
{% block body %}{% endblock %}
|
|
</div>
|
|
<!-- jQuery (necessary for Bootstraps JavaScript plugins) -->
|
|
<script src="{{ asset('js/jquery.js') }}"></script>
|
|
<!-- Include all JavaScripts, compiled by Assetic -->
|
|
<script src="{{ asset('semantic/dist/semantic.min.js') }}"></script>
|
|
{% block javascripts %}{% endblock %}
|
|
</body>
|
|
</html> |