Compare commits
2 Commits
a5506b6bf8
...
e811a069c2
Author | SHA1 | Date |
---|---|---|
Marcell Mars | e811a069c2 | |
Marcell Mars | 24ee5f501c |
|
@ -4,6 +4,7 @@ title = "Pirate Care"
|
||||||
theme = "piratecare"
|
theme = "piratecare"
|
||||||
relativeurls = true
|
relativeurls = true
|
||||||
disableKinds = ["RSS", "sitemap", "taxonomy"]
|
disableKinds = ["RSS", "sitemap", "taxonomy"]
|
||||||
|
enableGitInfo = true
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
description = "Network of activists, researchers and practitioners against the criminalisation of solidarity & for a common care infrastructure."
|
description = "Network of activists, researchers and practitioners against the criminalisation of solidarity & for a common care infrastructure."
|
||||||
|
|
|
@ -56,7 +56,7 @@ html {
|
||||||
}
|
}
|
||||||
|
|
||||||
img {
|
img {
|
||||||
@apply py-2;
|
@apply py-2;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* purgecss ignore */
|
/* purgecss ignore */
|
||||||
|
|
|
@ -34,6 +34,12 @@
|
||||||
|
|
||||||
{{define "main" }}
|
{{define "main" }}
|
||||||
<article>
|
<article>
|
||||||
<div class="content-text">{{ .Content }}</div>
|
{{ if eq .Params.last_modified "top" }}
|
||||||
|
<div class="font-playfair italic text-base">Last modified: {{ dateFormat "Monday, Jan 2, 2006" .Lastmod }}</div>
|
||||||
|
{{ end }}
|
||||||
|
<div class="content-text">{{ .Content }}</div>
|
||||||
|
{{ if eq .Params.last_modified "bottom" }}
|
||||||
|
<div class="font-playfair italic text-base">Last modified: {{ dateFormat "Monday, Jan 2, 2006" .Lastmod }}</div>
|
||||||
|
{{ end }}
|
||||||
</article>
|
</article>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
|
@ -44,6 +44,12 @@
|
||||||
|
|
||||||
{{define "main" }}
|
{{define "main" }}
|
||||||
<article>
|
<article>
|
||||||
|
{{ if eq .Params.last_modified "top" }}
|
||||||
|
<div class="font-playfair italic text-base">Last modified: {{ dateFormat "Monday, Jan 2, 2006" .Lastmod }}</div>
|
||||||
|
{{ end }}
|
||||||
<div class="content-text">{{ .Content }}</div>
|
<div class="content-text">{{ .Content }}</div>
|
||||||
|
{{ if eq .Params.last_modified "bottom" }}
|
||||||
|
<div class="font-playfair italic text-base">Last modified: {{ dateFormat "Monday, Jan 2, 2006" .Lastmod }}</div>
|
||||||
|
{{ end }}
|
||||||
</article>
|
</article>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
Loading…
Reference in New Issue