Files
leanote/app/views/Errors/500.html

18 lines
340 B
HTML
Raw Normal View History

2014-05-07 13:06:24 +08:00
{{if eq .RunMode "dev"}}
{{template "errors/500-dev.html" .}}
{{else}}
{{template "home/header_box.html" .}}
<section id="box">
<div>
<h1>error-500</h1>
<form class="form-inline" id="boxForm">
Sorry, we got a error.
<br />
<a href="javascript:history.go(-1)">Back</a>
</form>
</div>
</section>
</body>
</html>
{{end}}