Fix indentation for subsection template code in list.html

This commit is contained in:
BBaoVanC 2021-11-13 00:45:24 -06:00
parent 05100679e2
commit 17604ca75d
Signed by: bbaovanc
GPG Key ID: 18089E4E3CCF1D3A
1 changed files with 13 additions and 13 deletions

View File

@ -16,20 +16,20 @@
<a class="section-anchor" href="{{ .Permalink }}">
<div class="section">
<h2 class="section-title">
{{ with .Params.icon }}{{ partial "icon.html" . }}{{ end }}
{{ .Title | markdownify }}
</h2>
<h2 class="section-title">
{{ with .Params.icon }}{{ partial "icon.html" . }}{{ end }}
{{ .Title | markdownify }}
</h2>
<div class="section-description">
{{ if .Description }}
<p>
{{ .Description | markdownify }}
</p>
{{ else }}
{{ .Summary }}
{{ end }}
</div>
<div class="section-description">
{{ if .Description }}
<p>
{{ .Description | markdownify }}
</p>
{{ else }}
{{ .Summary }}
{{ end }}
</div>
</div>
</a>