mirror of
https://github.com/falsycat/ar.falsy.cat.git
synced 2025-02-05 17:51:24 +00:00
20 lines
412 B
HTML
20 lines
412 B
HTML
{{define "head"}}
|
|
{{ partial "head.html" . }}
|
|
{{end}}
|
|
|
|
{{define "main"}}
|
|
{{$content := replaceRE `a href="\.\.\/(.+%20.+)+"` `$1` .Content}}
|
|
{{$content = replace $content "%20" "-"}}
|
|
{{$content = $content | safeHTML}}
|
|
<!-- Main Page -->
|
|
<div class="singlePage">
|
|
{{partial "darkmode.html" .}}
|
|
{{$content}}
|
|
|
|
<!-- Contact Info -->
|
|
<div>
|
|
{{partial "footer.html" .}}
|
|
</div>
|
|
</div>
|
|
{{end}}
|