index.html

50 lines | 1.478 kB Blame History Raw Download
<!doctype html>
<html lang="en" ng-app="eventjugglerAdmin">

<head>
<meta charset="utf-8">
<title>EventJuggler Services Admin</title>

<link href="lib/bootstrap/css/bootstrap.css" rel="stylesheet">
<link href="lib/bootstrap/css/bootstrap-responsive.css" rel="stylesheet">
<link href="css/admin.css" rel="stylesheet">
<link href="css/admin-responsive.css" rel="stylesheet">

<link href="css/styles.css" rel="stylesheet">

<script src="lib/angular/angular.js"></script>
<script src="lib/angular/angular-resource.js"></script>
<script src="lib/angular/ui-bootstrap-tpls-0.3.0.js"></script>

<script src="lib/jquery/jquery-1.9.0.js"></script>

<script src="js/app.js"></script>
<script src="js/controllers.js"></script>
<script src="js/services.js"></script>
</head>

<body ng-controller="GlobalCtrl">

    <div class="alert-container" ng-show="notification" ng-click="notification = null">
        <div class="alert alert-{{notification.type}}">{{notification.message}}</div>
    </div>
        
    <div id="wrap">
        <div ng-include src="'partials/menu.html'"></div>

        <div ng-view id="view" ng-hide="httpProviderError"></div>

        <div id="httpProviderError" ng-show="httpProviderError">
            <button class="btn btn-danger" ng-click="httpProviderError=null">
                <strong>Error</strong> {{httpProviderError}}
            </button>
        </div>

        <div id="loading">
            <i class="icon-spinner icon-spin"></i> Loading...
        </div>
    </div>

</body>
</html>