Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions layouts/partials/post-entry.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</p>

{{ if .Site.Params.listSummaries }}
<p class="line-summary"> {{ .Summary }} </p>
<div class="line-summary"> {{ .Summary }} </div>

Copilot AI Mar 4, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Indentation within the {{ if .Site.Params.listSummaries }} block is inconsistent with the surrounding template (e.g., the earlier showListDate block). Consider indenting the <div class="line-summary"> line one level deeper to match the nesting and improve readability.

Suggested change
<div class="line-summary"> {{ .Summary }} </div>
<div class="line-summary"> {{ .Summary }} </div>

Copilot uses AI. Check for mistakes.
{{ end }}
</div>
</div>
</div>
Loading