mirror of
https://github.com/prometheus/prometheus.git
synced 2024-12-27 22:49:40 -08:00
f27adac848
This is now using a base template (_base.html) for the 'layout' of the web UI. Within that base template, the actual content templates get rendered.
14 lines
375 B
HTML
14 lines
375 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<title>Prometheus</title>
|
|
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
|
|
<link type="text/css" rel="stylesheet" href="static/css/prometheus.css">
|
|
</head>
|
|
|
|
<body>
|
|
{{template "content" .}}
|
|
</body>
|
|
</html>
|