forked from planex/defiance
Add content warning system
This commit is contained in:
parent
6dba674704
commit
12e89df9a8
3 changed files with 22 additions and 1 deletions
|
@ -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>
|
||||
|
|
|
@ -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 }}
|
|
@ -192,4 +192,12 @@ footer {
|
|||
pre, code {
|
||||
font-family: 'Liberation Mono', monospace;
|
||||
}
|
||||
|
||||
|
||||
/* For Content Warnings */
|
||||
label {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#cw:checked + label {
|
||||
display: block;
|
||||
}
|
Loading…
Add table
Reference in a new issue