33b0f43282
- Added `statics` params in the missed files - Renamed `statics` to `staticPath`
25 lines
589 B
HTML
25 lines
589 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
{{- partial "head.html" . -}}
|
|
{{- block "head" . }} {{- end }}
|
|
<title>
|
|
{{- block "title" . }} {{- end }}
|
|
</title>
|
|
</head>
|
|
|
|
<body class="light" onload="loading()">
|
|
<!-- javascripts -->
|
|
<!-- <script src="/js/jquery-3.6.0.min.js"></script> -->
|
|
<script src="{{ .Site.Params.staticPath }}/bootstrap-5/js/bootstrap.bundle.js"></script>
|
|
|
|
{{- partial "sections/header.html" . -}}
|
|
<div id="content">
|
|
{{- block "main" . }}{{- end }}
|
|
</div>
|
|
{{- partial "sections/footer/index.html" . -}}
|
|
{{- partial "scripts.html" . -}}
|
|
</body>
|
|
|
|
</html> |