mirror of
https://github.com/flysnow-org/maupassant-hugo.git
synced 2026-08-24 15:28:55 +00:00
22 lines
509 B
HTML
22 lines
509 B
HTML
<!doctype html>
|
|
<html lang="{{ with .Site.LanguageCode }}{{ . }}{{ else }}zh-CN{{end}}">
|
|
{{ partial "head" . }}
|
|
|
|
<body>
|
|
{{ partial "header" . }}
|
|
<div id="body">
|
|
<div class="container">
|
|
<div class="col-group">
|
|
|
|
<div class="col-8" id="main">
|
|
{{ block "content" . }}{{ end }}
|
|
{{ partial "footer" . }}
|
|
</div>
|
|
|
|
{{ partial "sidebar" . }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |