26 lines
536 B
HTML
26 lines
536 B
HTML
{{define "server_status"}}<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
{{template "meta_tags" "Server status"}}
|
|
{{template "user_style" .}}
|
|
|
|
<style>
|
|
.status_frame {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
border: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
{{template "page_menu" .}}
|
|
<div id="page_body" class="page_body" style="padding: 0; top: 0; bottom: 0;">
|
|
<iframe src="https://stats.uptimerobot.com/p9v2ktzyjm" class="status_frame"></iframe>
|
|
</div>
|
|
{{template "analytics"}}
|
|
</body>
|
|
</html>
|
|
{{end}}
|