mirror of
https://gitlab.com/MisterBiggs/brain-quartz.git
synced 2025-07-23 06:41:30 +00:00
.github
assets
content
data
i18n
layouts
_default
partials
404.html
index.html
static
.gitignore
.hugo_build.lock
.prettierrc
CODE_OF_CONDUCT.md
Dockerfile
LICENSE.txt
Makefile
README.md
config.toml
screenshot.png
21 lines
471 B
HTML
21 lines
471 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ .Lang }}">
|
|
{{ partial "head.html" . }}
|
|
|
|
<body>
|
|
{{partial "search.html" .}}
|
|
<div class="singlePage">
|
|
<!-- Begin actual content -->
|
|
{{partial "header.html" .}}
|
|
<article>
|
|
{{partial "toc.html" .}}
|
|
{{partial "textprocessing.html" . }}
|
|
{{if $.Site.Data.config.enableRecentNotes}}
|
|
{{partial "recent.html" . }}
|
|
{{end}}
|
|
</article>
|
|
{{partial "footerIndex.html" .}}
|
|
</div>
|
|
</body>
|
|
</html>
|