Merge branch 'main' into drafts

This commit is contained in:
John Bowdre 2024-04-27 22:43:21 -05:00
commit 90804909ad
3 changed files with 4 additions and 4 deletions

View file

@ -1,2 +1,2 @@
comments = false
comments = true
analytics = false

View file

@ -60,7 +60,7 @@
{{- if and (eq .Site.Params.comments true) (ne $emailReplies false) }}
<span class="post_email_reply"><a href="mailto:blogreply-{{ .Title | truncate 40 | urlize}}@runtimeterror.dev?Subject=Re: {{ .Title }}">📧 Reply by email</a></span>
{{- end }}
<br><details><summary>Comments</summary>
<br><details class="comments_widget"><summary>Comments</summary>
{{- partial "comments" . }}
</details>
{{- end }}

View file

@ -398,10 +398,10 @@ details {
cursor: pointer;
}
details summary::before {
details.comments_widget summary::before {
content: 'Load ';
}
details[open] summary::before {
details[open].comments_widget summary::before {
content: 'Hide ';
}