icinga

Icinga2 API client in Go
git clone https://git.olowe.co/icinga
Log | Files | Refs | README | LICENSE

base.tmpl (1050B)


      1 <!DOCTYPE html>
      2 <html lang="en">
      3 <head>
      4 	<meta charset="utf-8">
      5 	<meta name="viewport" content="width=device-width, initial-scale=1">
      6 	<link rel="stylesheet" href="https://the.missing.style">
      7 	<link href="https://fonts.bunny.net/css?family=source-sans-3:400,700|m-plus-code-latin:400,700" rel="stylesheet">
      8 	<title>{{block "title" .}}checkweb{{end}}</title>
      9 
     10 	<style>
     11 .unknown {
     12 	--box-bg: lavender;
     13 	--accent: rebeccapurple;
     14 }
     15 	</style>
     16 </head>
     17 <body>
     18 <header class="navbar">
     19 <nav class="contents">
     20 <a href="/">checkweb</a>
     21 <a href="/objects/services">Services</a>
     22 <a href="/objects/hosts">Hosts</a>
     23 <form class="f-row" action="/search">
     24 	<input type="search" placeholder="Search" name="filter">
     25 	<select name="type">
     26 		<option value="service">Services</option>
     27 		<option value="servicegroup">Service Groups</option>
     28 		<option value="host">Hosts</option>
     29 		<option value="hostgroup">Host Groups</option>
     30 	</select>
     31 </form>
     32 	</li>
     33 </ul>
     34 </nav>
     35 </header>
     36 <main>
     37 	{{block "content" .}}Hello, checkweb!{{end}}
     38 </main>
     39 <footer>
     40 </footer>
     41 </body>
     42 </html>