feat(footer): Add fallback footer and improve file reading

- Use resources.Get for safer file reading instead of readFile
  - Prevents directory traversal attacks
  - Ensures file access within Hugo's assets pipeline
  - Better error handling for missing files
- Add fallback copyright notice when footer.md is not found
- Add warning message for fallback to default footer
This commit is contained in:
younsl 2024-11-18 01:26:06 +09:00
parent 169f20256a
commit a0684e5add

View File

@ -1,4 +1,10 @@
{{ if site.Params.theme_config.isShowFooter }}
{{ $footerContent := readFile "layouts/footer.md" }}
{{ $footerContent | markdownify }}
{{ end }}
{{ with resources.Get "layouts/footer.md" }}
{{ .Content | markdownify }}
{{ else }}
{{ warnf "layouts/footer.md file is not found, fallback to the default copyright" }}
<footer class="site-footer">
<p>&copy; {{ now.Format "2006" }} {{ site.Title }}</p>
</footer>
{{ end }}
{{ end }}