mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
36 lines
1.5 KiB
HTML
36 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
|
|
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<meta name="viewport" content="width=device-width">
|
|
|
|
<title>Grafana</title>
|
|
<link rel="stylesheet" href="public/css/default.min.css" title="Dark">
|
|
|
|
<!-- build:js app/app.js -->
|
|
<script src="public/vendor/require/require.js"></script>
|
|
<script src="public/app/components/require.config.js"></script>
|
|
<!-- endbuild -->
|
|
|
|
<script>require(['app'], function (app) { app.boot(); })</script>
|
|
|
|
</head>
|
|
|
|
<body ng-cloak ng-controller="GrafanaCtrl">
|
|
|
|
<link rel="stylesheet" href="public/css/bootstrap.light.min.css" ng-if="grafana.style === 'light'">
|
|
<link rel="stylesheet" href="public/css/bootstrap-responsive.min.css">
|
|
<link rel="stylesheet" href="public/css/font-awesome.min.css">
|
|
|
|
<div ng-repeat='alert in dashAlerts.list' class="alert-{{alert.severity}} dashboard-notice" ng-show="$last">
|
|
<button type="button" class="close" ng-click="dashAlerts.clear(alert)" style="padding-right:50px">×</button>
|
|
<strong>{{alert.title}}</strong> <span ng-bind-html='alert.text'></span> <div style="padding-right:10px" class='pull-right small'> {{$index + 1}} alert(s) </div>
|
|
</div>
|
|
|
|
<div ng-view ng-class="{'dashboard-fullscreen': fullscreen}"></div>
|
|
|
|
</body>
|
|
</html>
|