mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-10 07:34:04 -08:00
e27447da5c
Due to the lack of a </a>, this makes the entire header render badly. Accordingly it's safe to assume noone is using it, so remove it. With the new console template support, we'll need to something a bit more nuanced later. Change-Id: I3424bed6aea18cbd4c63ad48f98808098dadc3ad
34 lines
1.1 KiB
HTML
34 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<title>Prometheus Time Series Collection and Processing Server</title>
|
|
<script src="/static/vendor/js/jquery.min.js"></script>
|
|
|
|
<link type="text/css" rel="stylesheet" href="/static/vendor/bootstrap/css/bootstrap.css">
|
|
<link type="text/css" rel="stylesheet" href="/static/css/prometheus.css">
|
|
|
|
{{template "head" .}}
|
|
</head>
|
|
|
|
<body>
|
|
<div class="navbar navbar-inverse navbar-fixed-top">
|
|
<div class="navbar-inner">
|
|
<div class="container-fluid">
|
|
<a class="brand" href="/">Prometheus</a>
|
|
<ul class="nav">
|
|
<li><a href="/alerts">Alerts</a></li>
|
|
<li><a href="/graph">Graph</a></li>
|
|
<li><a href="/">Status</a></li>
|
|
<li><a href="/databases">Databases</a></li>
|
|
<li>
|
|
<a href="https://github.com/prometheus/prometheus/wiki" target="_blank">Help</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{template "content" .}}
|
|
</body>
|
|
</html>
|