Files
Custom-Static-Website-Gener…/sample-hugo-template/Tech-Club-Blog/layouts/_default/baseof.html
2020-05-10 20:47:17 +04:00

26 lines
489 B
HTML

<html>
{{ partial "head/head.html" . }}
<body class="line-numbers">
{{ $script := resources.Get "js/initColors.js" }}
<script src="{{ $script.RelPermalink }}"></script>
<div class="layout-styled">
{{ partial "header.html" . }}
{{ block "main" . }}
{{ end }}
{{ partial "footer.html" . }}
</div>
{{ $script := resources.Get "js/prism.js" }}
<script src="{{ $script.RelPermalink }}"></script>
</body>
</html>