Security issues documented, and more nice improvements

This commit is contained in:
2022-06-10 15:35:31 +00:00
parent f3668df846
commit 93934438c7
21 changed files with 178 additions and 43 deletions

View File

@@ -1,7 +1,7 @@
{{ define "main" }}
<article>
<header>
<h1>{{ .Title | humanize }}</h1>
<h1>{{ .Title }}</h1>
</header>
{{ .Content }}
{{if gt (len .Pages) 0}}
@@ -10,9 +10,7 @@
<ul class='contents'>
{{ range .Pages }}
<br />
<a href='{{ .RelPermalink }}'>
<li>{{ partial "summary.html" . }}</li>
</a>
<a href='{{ .RelPermalink }}'><li>{{ partial "summary.html" . }}</li></a>
{{ end }}
</ul>
{{ end }}

View File

@@ -1,7 +1,7 @@
{{ define "main" }}
<article>
<header>
<h1>{{ .Title | humanize }}</h1>
<h1>{{ .Title }}</h1>
</header>
{{ .Content }}
</article>