mirror of
https://github.com/ivabus/www
synced 2024-11-15 02:25:06 +03:00
27 lines
655 B
HTML
27 lines
655 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en" dir="ltr">
|
||
|
{{- partial "head.html" . -}}
|
||
|
|
||
|
<body>
|
||
|
<!-- Google Tag Manager (noscript) -->
|
||
|
|
||
|
<noscript>
|
||
|
<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5WQVCLC" height="0" width="0"
|
||
|
style="display:none;visibility:hidden"></iframe>
|
||
|
</noscript>
|
||
|
|
||
|
<!-- End Google Tag Manager (noscript) -->
|
||
|
<header>
|
||
|
{{- partial "header.html" . -}}
|
||
|
</header>
|
||
|
{{- partial "navbar.html" . -}}
|
||
|
<main>
|
||
|
{{- block "main" . }}{{- end }}
|
||
|
</main>
|
||
|
<footer>
|
||
|
{{- partial "footer.html" . -}}
|
||
|
</footer>
|
||
|
{{- partial "scriptFooter.html" . -}}
|
||
|
</body>
|
||
|
|
||
|
</html>
|