mirror of
https://gitlab.com/MisterBiggs/brain-quartz.git
synced 2025-08-13 17:11:32 +00:00
.github
assets
content
data
layouts
_default
partials
backlinks.html
contact.html
darkmode.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
15 lines
488 B
HTML
15 lines
488 B
HTML
<!-- Contact Info -->
|
|
<div id="contact_buttons">
|
|
<footer>
|
|
<p>Made by {{ $.Site.Data.config.name }} using <a href="https://github.com/jackyzha0/quartz">Quartz</a>, © {{ dateFormat "2006" now }}</p>
|
|
<ul>
|
|
{{ if not .IsHome }}
|
|
<li><a href="/">Home</a></li>
|
|
{{end}}
|
|
{{- range $.Site.Data.config.links -}}
|
|
<li><a href="{{.link}}">{{.link_name}}</a></li>
|
|
{{- end -}}
|
|
</ul>
|
|
</footer>
|
|
</div>
|