Files
hugo-profile/layouts/_default/baseof.html
T
gurusabarish 33b0f43282 Added ststic in missed files and renamed to staticPath
- Added `statics` params in the missed files
- Renamed `statics` to `staticPath`
2022-04-02 23:35:22 +05:30

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>