2021-07-18 15:54:00 +00:00
|
|
|
{{define "head"}}
|
|
|
|
{{ partial "head.html" . }}
|
|
|
|
{{end}}
|
|
|
|
|
|
|
|
{{define "main"}}
|
2021-10-26 19:36:20 +00:00
|
|
|
{{$content := replaceRE `a href="\.\.\/(.+%20.+)+"` `$1` .Content}}
|
|
|
|
{{$content = replace $content "%20" "-"}}
|
|
|
|
{{$content = $content | safeHTML}}
|
2021-07-18 15:54:00 +00:00
|
|
|
<!-- Main Page -->
|
|
|
|
<div class="singlePage">
|
2021-07-18 16:06:36 +00:00
|
|
|
{{partial "darkmode.html" .}}
|
2021-10-26 19:36:20 +00:00
|
|
|
{{$content}}
|
2021-07-18 15:54:00 +00:00
|
|
|
|
|
|
|
<!-- Contact Info -->
|
2021-07-18 17:02:53 +00:00
|
|
|
<div>
|
2021-07-18 15:54:00 +00:00
|
|
|
{{partial "footer.html" .}}
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-08-13 20:46:00 +00:00
|
|
|
{{end}}
|