You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

33 lines
945 B

<!DOCTYPE html>
<html>
<head>
{{ block "head" . }}
{{ partial "head.html" . }}
{{ end }}
{{ block "head_resources" . }}
<!-- Use this block to link to further resources like .js or .css files. -->
{{ end }}
<title>
{{ block "title" . }}
{{ .Title }}
{{ end }}
</title>
</head>
<body>
{{ block "main" . }}<div class="wrap">
{{ block "section_title" . }}<div class="section" id="title">{{ .Title }}</div>{{ end }}
{{ block "section_content" . }}<div class="section" id="content">{{ .Content }}</div>{{ end }}
{{ block "bottom-menu" . }}
{{ if .Site.Params.mainMenu }}<div class="section bottom-menu">{{ partial "bottom_menu.html" (dict "Page" . "show_back_menu_item" false) }}</div>{{ end }}
{{ end }}
{{ block "footer" . }}<div class="section footer">{{ partial "footer.html" . }}</div>{{ end }}
</div>{{ end }}
</body>
</html>