2018-08-14 07:30:26 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
{{if USE_CDN}}
|
|
|
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">
|
|
|
|
<link rel="stylesheet" href="https://assets.statup.io/base.css">
|
|
|
|
{{ else }}
|
|
|
|
<link rel="stylesheet" href="/css/bootstrap.min.css">
|
|
|
|
<link rel="stylesheet" href="/css/base.css">
|
|
|
|
{{end}}
|
|
|
|
<title>Statup | Logs</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<div class="container col-md-7 col-sm-12 mt-md-5 bg-light">
|
|
|
|
|
|
|
|
{{if Auth}}
|
|
|
|
{{template "nav"}}
|
|
|
|
{{end}}
|
|
|
|
|
|
|
|
<div class="col-12">
|
|
|
|
|
2018-08-19 13:40:32 +00:00
|
|
|
<textarea id="live_logs" class="form-control" rows="40" readonly>{{range .}}{{.}}{{end}}</textarea>
|
2018-08-14 07:30:26 +00:00
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{template "footer"}}
|
|
|
|
|
|
|
|
{{if USE_CDN}}
|
2018-08-22 05:41:15 +00:00
|
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
|
2018-08-14 07:30:26 +00:00
|
|
|
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js" integrity="sha384-smHYKdLADwkXOn1EmN1qk/HfnUcbVRZyYmZ4qpPea6sjB/pTJ0euyQp0Mk8ck+5T" crossorigin="anonymous"></script>
|
|
|
|
<script src="https://assets.statup.io/main.js"></script>
|
|
|
|
{{ else }}
|
2018-08-22 05:41:15 +00:00
|
|
|
<script src="/js/jquery-3.3.1.min.js"></script>
|
2018-08-14 07:30:26 +00:00
|
|
|
<script src="/js/bootstrap.min.js"></script>
|
|
|
|
<script src="/js/main.js"></script>
|
|
|
|
{{end}}
|
|
|
|
|
2018-09-15 10:06:31 +00:00
|
|
|
<style>
|
|
|
|
@media (max-width: 767px) {
|
|
|
|
#live_logs {
|
|
|
|
font-size: 6pt;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
2018-08-14 07:30:26 +00:00
|
|
|
</body>
|
|
|
|
</html>
|