hugo-theme-flat/layouts/_default/baseof.html
2022-04-27 21:54:00 +08:00

23 lines
627 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>{{ with .Params.Title }}{{ . }} | {{ end }}{{ .Site.Title }}</title>
{{ partial "head.html" . }}
</head>
<body>
{{ partial "header.html" . }}
<main class="main-wrapper">
<div class="main">
{{ block "main" . }}{{ end }}
</div>
<div class="side">
{{ partial "side-recent.html" . }}
{{ partial "side-categories.html" . }}
{{ partial "side-tags.html" . }}
</div>
</main>
{{ partial "footer.html" . }}
</body>
</html>