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}}">
|
<li data-tags="{{.Params.Tags}}">
|
||||||
<h3><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
|
<h3><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
|
||||||
{{ partial "metadata.html" . }}
|
{{ partial "metadata.html" . }}
|
||||||
|
{{ if .Params.cws }}
|
||||||
|
{{ else }}
|
||||||
<a href="{{ .RelPermalink }}">
|
<a href="{{ .RelPermalink }}">
|
||||||
<p>{{ .Summary }}</p>
|
<p>{{ .Summary }}</p>
|
||||||
</a>
|
</a>
|
||||||
|
{{ end }}
|
||||||
</li>
|
</li>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
@ -2,5 +2,15 @@
|
||||||
<h1>{{ .Title }}</h1>
|
<h1>{{ .Title }}</h1>
|
||||||
{{ partial "metadata.html" . }}
|
{{ partial "metadata.html" . }}
|
||||||
<br><br>
|
<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 }}
|
{{ .Content }}
|
||||||
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
|
@ -192,4 +192,12 @@ footer {
|
||||||
pre, code {
|
pre, code {
|
||||||
font-family: 'Liberation Mono', monospace;
|
font-family: 'Liberation Mono', monospace;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* For Content Warnings */
|
||||||
|
label {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#cw:checked + label {
|
||||||
|
display: block;
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue