Add content warning system

This commit is contained in:
ch0ccyra1n 2022-09-13 15:46:33 -07:00
parent 6dba674704
commit 12e89df9a8
3 changed files with 22 additions and 1 deletions

View file

@ -6,9 +6,12 @@
<li data-tags="{{.Params.Tags}}">
<h3><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
{{ partial "metadata.html" . }}
{{ if .Params.cws }}
{{ else }}
<a href="{{ .RelPermalink }}">
<p>{{ .Summary }}</p>
</a>
{{ end }}
</li>
{{ end }}
</ul>

View file

@ -2,5 +2,15 @@
<h1>{{ .Title }}</h1>
{{ partial "metadata.html" . }}
<br><br>
{{ if $.Params.cws }}
<input type="checkbox" id="cw">Content Warning: {{ range $i, $e := .Params.cws -}}
{{- if $i -}}, {{ end -}}
{{ $e | humanize }}
{{- end -}}</input>
<label for="cw" onclick="return false;">
{{ .Content }}
</label>
{{ else }}
{{ .Content }}
{{ end }}
{{ end }}

View file

@ -192,4 +192,12 @@ footer {
pre, code {
font-family: 'Liberation Mono', monospace;
}
/* For Content Warnings */
label {
display: none;
}
#cw:checked + label {
display: block;
}