18 lines
378 B
HTML
18 lines
378 B
HTML
{{ define "base" }}
|
|
<!DOCTYPE html>
|
|
<html lang="zh">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{{ block "title" . }}默认标题{{ end }}</title>
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
</head>
|
|
<body>
|
|
{{ template "navbar" . }}
|
|
|
|
<main>
|
|
{{ block "content" . }}{{ end }}
|
|
</main>
|
|
</body>
|
|
</html>
|
|
{{ end }}
|