statping/source/tmpl/help.html

25 lines
462 B
HTML
Raw Normal View History

2018-10-02 06:21:14 +00:00
{{define "title"}}Statup | Help{{end}}
{{define "content"}}
2018-06-24 11:51:07 +00:00
<div class="container col-md-7 col-sm-12 mt-md-5 bg-light">
2018-06-19 04:48:25 +00:00
{{if Auth}}
{{template "nav"}}
{{end}}
2018-10-02 06:21:14 +00:00
<div class="col-12">
{{ safe . }}
</div>
2018-06-19 04:48:25 +00:00
</div>
2018-10-02 06:21:14 +00:00
{{end}}
{{define "extra_css"}}
<style>
pre {
background-color: white;
padding: 10px 15px;
border: 1px solid #a2a2a233;
border-radius: 7px;
}
code {
color: #d87e1a;
}
</style>
{{end}}