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

18 lines
341 B
HTML
Raw Normal View History

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