32 lines
913 B
HTML
32 lines
913 B
HTML
<!doctype html>
|
|
<html lang="{{- site.Language.Lang -}}">
|
|
<head>
|
|
{{- partial "head.html" . -}}
|
|
<link rel="alternate"
|
|
type="application/rss+xml"
|
|
href="{{.Site.BaseURL }}/index.xml"
|
|
title="{{ .Site.Title }}">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="page">
|
|
<header class="page__header">{{- partial "header.html" . -}}</header>
|
|
|
|
<section class="page__body">{{ .Content }}</section>
|
|
|
|
<section class="page__aside">
|
|
<div class="aside__about">{{- partial "about.html" . -}}</div>
|
|
<hr />
|
|
<div class="aside__content">
|
|
{{- block "aside" . }}{{- end }}{{partial "allTags.html" . -}}
|
|
</div>
|
|
<div class="aside__content">
|
|
{{- block "aside" . }}{{- end }}{{partial "recentPosts.html" . -}}
|
|
</div>
|
|
</section>
|
|
|
|
<footer class="page__footer">{{- partial "footer.html" . -}}</footer>
|
|
</div>
|
|
</body>
|
|
</html>
|