66 lines
3.1 KiB
HTML
66 lines
3.1 KiB
HTML
<!doctype html>
|
|
<html ng-app="eventManApp">
|
|
<head>
|
|
<title>Event Man(ager)</title>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<script src="/static/js/angular.js"></script>
|
|
<script src="/static/js/angular-route.js"></script>
|
|
<script src="/static/js/angular-resource.js"></script>
|
|
<script src="/static/js/angular-file-upload.min.js"></script>
|
|
<script src="/static/js/ui-bootstrap-tpls-0.12.1.js"></script>
|
|
<script src="/static/js/angular-translate.js"></script>
|
|
<script src="/static/js/eventman.js"></script>
|
|
<script src="/js/app.js"></script>
|
|
<script src="/js/i18n.js"></script>
|
|
<script src="/js/services.js"></script>
|
|
<script src="/js/controllers.js"></script>
|
|
<link href="/static/css/normalize.css" rel="stylesheet">
|
|
<link href="/static/css/bootstrap.css" rel="stylesheet">
|
|
<link href="/static/css/bootstrap-theme.css" rel="stylesheet">
|
|
<link href="/static/css/eventman.css" rel="stylesheet">
|
|
</head>
|
|
|
|
<!--
|
|
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.
|
|
-->
|
|
|
|
<body>
|
|
<nav class="navbar navbar-default navbar-fixed-top" ng-controller="NavigationCtrl as n">
|
|
<div class="container">
|
|
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
|
|
<ul class="nav navbar-nav">
|
|
<li ng-class="{active: n.isActive('/events')}"><a ng-href="#/events">{{'Events' | translate}}</a></li>
|
|
<li ng-class="{active: n.isActive('/new-event')}"><a ng-href="#/new-event">{{'Add event' | translate}}</a></li>
|
|
<li ng-class="{active: n.isActive('/persons')}"><a ng-href="#/persons">{{'Persons' | translate}}</a></li>
|
|
<li ng-class="{active: n.isActive('/new-person')}"><a ng-href="#/new-person">{{'Add person' | translate}}</a></li>
|
|
<li ng-class="{active: n.isActive('/import-persons')}"><a ng-href="#/import-persons">{{'Import persons' | translate}}</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<div class="main-header">
|
|
</div>
|
|
|
|
<!-- all the magic takes place here: the content inside the next div
|
|
changes accordingly to the location you're visiting -->
|
|
<div ng-view></div>
|
|
|
|
<div class="main-footer">
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|