init
This commit is contained in:
commit
741e1c403a
102 changed files with 70058 additions and 0 deletions
27
src/Hackspace/Bundle/CalciferBundle/Resources/views/layout.html.twig
Executable file
27
src/Hackspace/Bundle/CalciferBundle/Resources/views/layout.html.twig
Executable file
|
@ -0,0 +1,27 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
|
||||
<title>{% block title %}Terminverwaltung Calcifer{% endblock %}</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<!-- Bootstrap -->
|
||||
<link href="{{ asset('css/bootstrap.css') }}" rel="stylesheet" media="screen">
|
||||
|
||||
<!-- HTML5 Shim and Respond.js add IE8 support of HTML5 elements and media queries -->
|
||||
{% include 'BraincraftedBootstrapBundle::ie8-support.html.twig' %}
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
{% include "CalciferBundle::navigation.html.twig" %}
|
||||
|
||||
<div class="container">
|
||||
{% block body %}{% endblock %}
|
||||
</div>
|
||||
{% block javascripts %}{% endblock %}
|
||||
<!-- jQuery (necessary for Bootstraps JavaScript plugins) -->
|
||||
<script src="{{ asset('js/jquery.js') }}"></script>
|
||||
<!-- Include all JavaScripts, compiled by Assetic -->
|
||||
<script src="{{ asset('js/bootstrap.js') }}"></script>
|
||||
</body>
|
||||
</html>
|
Reference in a new issue