2020-07-07 08:37:57 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
{{- partial "head.html" . -}}
|
|
|
|
<body>
|
|
|
|
{{- partial "header.html" . -}}
|
|
|
|
{{- block "main" . }}{{- end }}
|
|
|
|
{{- partial "footer.html" . -}}
|
2020-07-08 18:26:33 +00:00
|
|
|
|
2020-07-07 08:37:57 +00:00
|
|
|
<!-- We do need jQuery to be loaded before HugoScroll script -->
|
|
|
|
<script type="text/javascript" src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
|
2020-07-08 18:26:33 +00:00
|
|
|
|
2020-07-07 08:37:57 +00:00
|
|
|
<!-- The main JavaScript files for HugoScroll -->
|
2020-07-09 09:21:57 +00:00
|
|
|
<script type="text/javascript" src='{{ "js/icons.js" | absURL }}'></script>
|
|
|
|
<script type="text/javascript" src='{{ "js/index.js" |absURL }}'></script>
|
2020-07-08 18:26:33 +00:00
|
|
|
<!-- A partial to be overwritten by the user.
|
|
|
|
Simply place a custom_body.html into
|
|
|
|
your local /layouts/partials-directory -->
|
|
|
|
{{- partial "custom_body.html" . -}}
|
2020-07-07 08:37:57 +00:00
|
|
|
</body>
|
|
|
|
</html>
|