mirror of
https://gitlab.com/MisterBiggs/brain-quartz.git
synced 2025-08-11 16:11:33 +00:00
.github
assets
content
data
i18n
layouts
_default
partials
backlinks.html
contact.html
darkmode.html
date-fmt.html
footer.html
footerIndex.html
github.html
graph.html
head.html
header.html
katex.html
page-list.html
recent.html
search.html
textprocessing.html
toc.html
404.html
index.html
static
.gitignore
.hugo_build.lock
.prettierrc
CODE_OF_CONDUCT.md
LICENSE.txt
Makefile
README.md
config.toml
screenshot.png
25 lines
508 B
HTML
25 lines
508 B
HTML
{{if $.Site.Data.config.enableFooter}}
|
|
{{if $.Site.Data.graphConfig.enableGlobalGraph}}
|
|
<div class="page-end" id="footer">
|
|
|
|
<div>
|
|
{{partial "graph.html" .}}
|
|
</div>
|
|
|
|
</div>
|
|
{{else}}
|
|
<hr/>
|
|
<div class="page-end" id="footer">
|
|
<div class="backlinks-container">
|
|
{{partial "backlinks.html" .}}
|
|
</div>
|
|
<div>
|
|
{{partial "graph.html" .}}
|
|
</div>
|
|
|
|
</div>
|
|
{{end}}
|
|
{{end}}
|
|
|
|
{{partial "contact.html" .}}
|