Use indentation inside templating blocks for better readability

This commit is contained in:
2021-11-22 02:21:15 -06:00
parent e1e211a42a
commit ead88d5e16
24 changed files with 310 additions and 326 deletions

View File

@ -9,22 +9,22 @@
</div>
{{ if not .IsHome }}
{{ partial "breadcrumb.html" . }}
{{ partial "breadcrumb.html" . }}
{{ end }}
<div class="content">
{{ block "main" . }}
{{ .Content }}
{{ .Content }}
{{ end }}
</div>
{{ with .Site.Copyright }}
<footer>
<hr>
<small>
{{ . | safeHTML }}
</small>
</footer>
<footer>
<hr>
<small>
{{ . | safeHTML }}
</small>
</footer>
{{ end }}
</body>