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">
|
|
|
|
<script src="/static/js/angular.min.js"></script>
|
|
|
|
<script src="/static/js/angular-route.js"></script>
|
|
|
|
<script src="/static/js/angular-resource.js"></script>
|
|
|
|
<script src="/js/app.js"></script>
|
|
|
|
<script src="/js/services.js"></script>
|
|
|
|
<script src="/js/controllers.js"></script>
|
|
|
|
<link href="/static/css/bootstrap.min.css" rel="stylesheet">
|
|
|
|
<link href="/static/css/bootstrap-theme.min.css" rel="stylesheet">
|
|
|
|
<link href="/static/css/eventman.css" rel="stylesheet">
|
|
|
|
</head>
|
2015-03-15 18:00:08 +01:00
|
|
|
|
2015-03-21 15:45:40 +01:00
|
|
|
<body>
|
|
|
|
<div class="main-header" ng-controller="navigation as n">
|
|
|
|
<input type="button" id="events-button" ng-click="n.go('/events')" class="btn btn-link" value="Events" />
|
|
|
|
<input type="button" id="new-event-button" ng-click="n.go('/new-event')" class="btn btn-link" value="Add Event" />
|
|
|
|
<input type="button" id="persons-button" ng-click="n.go('/persons')" class="btn btn-link" value="Persons" />
|
|
|
|
<input type="button" id="persons-button" ng-click="n.go('/new-person')" class="btn btn-link" value="Add Persons" />
|
|
|
|
</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-03-21 15:45:40 +01:00
|
|
|
<div ng-view></div>
|
2015-03-15 18:00:08 +01:00
|
|
|
|
2015-03-21 15:45:40 +01:00
|
|
|
<div class="main-footer">
|
|
|
|
</div>
|
|
|
|
<script src="/static/js/jquery-2.1.3.min.js"></script>
|
|
|
|
<script src="/static/js/bootstrap.min.js"></script>
|
|
|
|
</body>
|
2015-03-14 17:32:16 +01:00
|
|
|
</html>
|