cadoles-profile/cmd/server/templates/blocks/base.html.tmpl

19 lines
643 B
Cheetah

{{define "base"}}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{block "title" . -}}{{- end}}</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.4/css/bulma.min.css">
<link rel="stylesheet" href="/css/common.css">
{{- block "head_style" . -}}{{end}}
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
{{- block "head_script" . -}}{{end}}
</head>
<body>
{{- block "body" . -}}{{- end -}}
{{- block "body_script" . -}}{{end}}
</body>
</html>
{{end}}