18 lines
340 B
HTML
18 lines
340 B
HTML
{{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}} |