2015-03-14 17:32:16 +01:00
|
|
|
<!doctype html>
|
2015-03-15 18:00:08 +01:00
|
|
|
<html ng-app="eventManApp">
|
2015-03-21 15:45:40 +01:00
|
|
|
<head>
|
2015-03-22 09:08:38 +01:00
|
|
|
<title>Event Man(ager)</title>
|
2015-03-21 15:45:40 +01:00
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2015-03-28 15:34:32 +01:00
|
|
|
<script src="/static/js/angular.js"></script>
|
2015-03-21 15:45:40 +01:00
|
|
|
<script src="/static/js/angular-route.js"></script>
|
|
|
|
<script src="/static/js/angular-resource.js"></script>
|
2015-03-29 09:58:52 +02:00
|
|
|
<script src="/static/js/angular-file-upload.min.js"></script>
|
2015-03-28 15:34:32 +01:00
|
|
|
<script src="/static/js/ui-bootstrap-tpls-0.12.1.js"></script>
|
2015-04-05 16:57:21 +02:00
|
|
|
<script src="/static/js/angular-ui-router.min.js"></script>
|
2015-04-26 01:10:58 +02:00
|
|
|
<script src="/static/js/angular-websocket.js"></script>
|
2015-03-28 20:06:33 +01:00
|
|
|
<script src="/static/js/angular-translate.js"></script>
|
2015-03-28 12:48:36 +01:00
|
|
|
<script src="/static/js/eventman.js"></script>
|
2015-03-21 15:45:40 +01:00
|
|
|
<script src="/js/app.js"></script>
|
2015-03-28 20:06:33 +01:00
|
|
|
<script src="/js/i18n.js"></script>
|
2015-04-08 21:55:23 +02:00
|
|
|
<script src="/js/filters.js"></script>
|
2015-04-18 15:26:04 +02:00
|
|
|
<script src="/js/directives.js"></script>
|
2015-03-21 15:45:40 +01:00
|
|
|
<script src="/js/services.js"></script>
|
|
|
|
<script src="/js/controllers.js"></script>
|
2015-03-22 14:55:00 +01:00
|
|
|
<link href="/static/css/normalize.css" rel="stylesheet">
|
2015-03-28 15:34:32 +01:00
|
|
|
<link href="/static/css/bootstrap.css" rel="stylesheet">
|
|
|
|
<link href="/static/css/bootstrap-theme.css" rel="stylesheet">
|
2015-03-21 15:45:40 +01:00
|
|
|
<link href="/static/css/eventman.css" rel="stylesheet">
|
|
|
|
</head>
|
2015-03-22 09:36:32 +01:00
|
|
|
|
|
|
|
<!--
|
|
|
|
Copyright 2015 Davide Alberani <da@erlug.linux.it>
|
|
|
|
RaspiBO <info@raspibo.org>
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
-->
|
2015-03-15 18:00:08 +01:00
|
|
|
|
2015-03-21 15:45:40 +01:00
|
|
|
<body>
|
2015-04-05 10:13:00 +02:00
|
|
|
<nav class="navbar navbar-default navbar-fixed-top" ng-controller="NavigationCtrl as n">
|
|
|
|
<div class="container">
|
2015-04-06 17:59:31 +02:00
|
|
|
<div class="collapse navbar-collapse">
|
2015-04-05 09:28:08 +02:00
|
|
|
<ul class="nav navbar-nav">
|
2015-04-05 16:57:21 +02:00
|
|
|
<li ng-class="{active: n.isActive('/events') || n.isActive('/event')}"><a ui-sref="events">{{'Events' | translate}}</a></li>
|
2015-04-05 20:12:54 +02:00
|
|
|
<li ng-class="{active: n.isActive('/persons') || n.isActive('/person') || n.isActive('/import/persons')}"><a ui-sref="persons">{{'Persons' | translate}}</a></li>
|
2015-04-05 09:28:08 +02:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
<div class="main-header">
|
2015-03-21 15:45:40 +01:00
|
|
|
</div>
|
2015-03-15 20:39:55 +01:00
|
|
|
|
2015-03-22 09:08:38 +01:00
|
|
|
<!-- all the magic takes place here: the content inside the next div
|
|
|
|
changes accordingly to the location you're visiting -->
|
2015-04-05 16:57:21 +02:00
|
|
|
<div ui-view></div>
|
2015-03-15 18:00:08 +01:00
|
|
|
|
2015-03-21 15:45:40 +01:00
|
|
|
<div class="main-footer">
|
|
|
|
</div>
|
2015-04-05 09:28:08 +02:00
|
|
|
|
2015-03-21 15:45:40 +01:00
|
|
|
</body>
|
2015-03-14 17:32:16 +01:00
|
|
|
</html>
|