remove comments, better gray

This commit is contained in:
ilya 2025-09-16 21:25:12 +02:00
parent 1b58789cad
commit 3d7bb05d08
4 changed files with 1 additions and 31 deletions

View File

@ -3,7 +3,6 @@
<article> <article>
{{ .Content }} {{ .Content }}
{{ partial "comments.html" . }}
</article> </article>

View File

@ -23,33 +23,6 @@
</div> </div>
<h1>{{ .Title }}</h1> <h1>{{ .Title }}</h1>
<h2 class="subheading">{{ .Params.subtitle }}</h2> <h2 class="subheading">{{ .Params.subtitle }}</h2>
<span class="meta">
{{ if .Params.metadata }}
{{ range $index, $element := .Params.metadata }}
{{ if .link }}
<a href="{{ .link }}">{{ .text }}</a>
{{ else }}
{{ .text }}
{{ end }}
{{ end }}
{{ else }}
Posted by
{{ if .Params.author }}
{{ .Params.author }}
{{ else }}
{{ .Site.Title }}
{{ end }}
on
{{ .Date.Format "Monday, January 2, 2006" }}
{{ if .Site.Params.page_view_conter }}
{{ partial "page_view_counter.html" . }}
{{ end }}
<!-- Don't show "Last Modified on" if update happened on the same day. -->
{{ if (and (not .Lastmod.IsZero) (not (eq (dateFormat "2006-01-02" .Lastmod) (dateFormat "2006-01-02" .Date)))) }}
<br>Last Modified on {{ dateFormat "Monday, January 2, 2006" .Params.LastMod }}
{{ end }}
{{ end }}
</span>
</div> </div>
</div> </div>
</div> </div>
@ -101,7 +74,6 @@
</ul> </ul>
{{ end }} {{ end }}
{{ partial "comments.html" . }}
</div> </div>
<!-- Side Catalog Container --> <!-- Side Catalog Container -->

View File

@ -10,7 +10,6 @@
post-container"> post-container">
{{ .Content }} {{ .Content }}
{{ partial "comments.html" . }}
</div> </div>
<!-- Sidebar Container --> <!-- Sidebar Container -->

File diff suppressed because one or more lines are too long