mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 11:36:23 +00:00
19 lines
412 B
HTML
19 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}}
|