Files
leanote/app/views/errors/500.html
lealife 032470c3df v 2.2
2016-12-24 15:47:57 +08:00

36 lines
1.2 KiB
HTML

{{if eq .RunMode "dev"}}
{{template "errors/500-dev.html" .}}
{{else}}
{{template "home/header_box.html" .}}
<section id="box">
<div>
<div>
<h1 class="h text-white animated fadeInDownBig">500</h1>
</div>
<div id="errorBox">
<p class="error-info">
Sorry, we got an error.
</p>
<div class="list-group m-b-sm bg-white m-b-lg">
<a href="javascript:history.go(-1);" class="list-group-item"><!-- <i class="fa fa-chevron-right icon-muted"> --></i> <i class="fa fa-fw fa-arrow-left icon-muted"></i> Back </a>
<a href="/index" class="list-group-item"><!-- <i class="fa fa-chevron-right icon-muted"> --></i> <i class="fa fa-fw fa-home icon-muted"></i> Goto homepage </a>
<a href="/note" class="list-group-item"><!-- <i class="fa fa-chevron-right icon-muted"> --></i> <i class="fa fa-fw fa-file-o icon-muted"></i> My note</a>
<a class="list-group-item" href="mailto:leanote@leanote.com">
<span class="badge">leanote@leanote.com</span>
<i class="fa fa-fw fa-envelope-o icon-muted"></i> Contact Us </a>
</div>
</div>
</div>
</section>
<div id="boxFooter">
<p>
© <a href="/index">Leanote</a>
</p>
</div>
</body>
</html>
{{end}}