Major overhaul:

* Switched to semantic ui.
* Add searching by location or tag
* Reworked the forms
This commit is contained in:
Tim Schumacher 2014-07-08 00:11:48 +02:00
parent 741e1c403a
commit 1f6c3c5fd4
51 changed files with 43286 additions and 771 deletions

View file

@ -5,23 +5,25 @@
<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">
<link href="{{ asset('css/semantic.css') }}" rel="stylesheet" media="screen">
<link href='http://fonts.googleapis.com/css?family=Roboto:400,700' rel='stylesheet' type='text/css'>
<link href="{{ asset('css/custom.css') }}" rel="stylesheet" media="screen">
{% block css %}
<!-- HTML5 Shim and Respond.js add IE8 support of HTML5 elements and media queries -->
{% include 'BraincraftedBootstrapBundle::ie8-support.html.twig' %}
{% endblock %}
</head>
<body>
{% include "CalciferBundle::navigation.html.twig" %}
<div class="container">
<div id="main" class="segment">
{% 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>
<script src="{{ asset('js/semantic.js') }}"></script>
{% block javascripts %}{% endblock %}
</body>
</html>