20 lines
465 B
Go Template
20 lines
465 B
Go Template
{{define "error"}}
|
|||
|
|
<!doctype html>
|
||
|
|
<html lang="zh-CN">
|
||
|
|
<head>
|
||
|
|
<title>{{.Page.Title}} - 采购任务管理</title>
|
||
|
|
{{template "document-head" .}}
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
{{template "site-header" .}}
|
||
|
|
<main id="main-content" class="page narrow-page">
|
||
|
|
<section class="error-page" role="alert">
|
||
|
|
<h1>{{.Heading}}</h1>
|
||
|
|
<p>{{.Message}}</p>
|
||
|
|
<a class="button primary" href="/tasks">返回任务列表</a>
|
||
|
|
</section>
|
||
|
|
</main>
|
||
|
|
</body>
|
||
|
|
</html>
|
||
|
|
{{end}}
|