85d913feb0
Resource downloaded from linked URL https://code.jquery.com/jquery-1.11.3.min.js ecb916133a9376911f10bc5c659952eb0031e457f5df367cde560edbfba38fb8 jquery-1.11.3.min.js
21 lines
763 B
HTML
21 lines
763 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
{{- partial "head.html" . -}}
|
|
<body>
|
|
{{- partial "header.html" . -}}
|
|
{{- block "main" . }}{{- end }}
|
|
{{- partial "footer.html" . -}}
|
|
|
|
<!-- We do need jQuery to be loaded before HugoScroll script -->
|
|
<script type="text/javascript" src='{{ "js/jquery-1.11.3.min.js" | absURL }}'></script>
|
|
|
|
<!-- The main JavaScript files for HugoScroll -->
|
|
<script type="text/javascript" src='{{ "js/icons.js" | absURL }}'></script>
|
|
<script type="text/javascript" src='{{ "js/index.js" |absURL }}'></script>
|
|
<!-- A partial to be overwritten by the user.
|
|
Simply place a custom_body.html into
|
|
your local /layouts/partials-directory -->
|
|
{{- partial "custom_body.html" . -}}
|
|
</body>
|
|
</html>
|