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:
parent
169f20256a
commit
a0684e5add
@ -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>© {{ now.Format "2006" }} {{ site.Title }}</p>
|
||||
</footer>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
|
Loading…
x
Reference in New Issue
Block a user