jefklakscodex/layouts/_default/baseof.html

21 lines
473 B
HTML
Raw Normal View History

2018-05-14 22:32:52 +02:00
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
2018-07-24 21:35:52 +02:00
<head>
{{ partial "head.html" . }}
</head>
2018-05-14 22:32:52 +02:00
<body>
<a name="top" id="top"></a>
<div id="all">
<div class="container-fluid">
<div class="row row-offcanvas row-offcanvas-left">
{{ partial "sidebar.html" . }}
{{ block "main" . }}
{{ end }}
</div>
</div>
</div>
{{ partial "scripts.html" . }}
2018-05-17 20:30:00 +02:00
{{ partial "footer.html" . }}
2018-05-14 22:32:52 +02:00
</body>
</html>