mirror of
https://github.com/jbowdre/virtuallypotato.git
synced 2024-11-22 15:02:18 +00:00
61 lines
1.8 KiB
HTML
61 lines
1.8 KiB
HTML
{{- define "main" }}
|
|
{{- $s := .Site.Params }}
|
|
{{- $p := .Params }}
|
|
{{- $scratch := newScratch }}
|
|
{{- if isset $p "image" }}
|
|
{{- $scratch.Set "image" $p.image }}
|
|
{{- else }}
|
|
{{ $scratch.Set "image" $s.fallBackOgImage }}
|
|
{{- end }}
|
|
{{- $image := $scratch.Get "image" }}
|
|
{{- $bg := absLangURL (path.Join "images" $image) }}
|
|
<div class="{{ if ne $p.singleColumn true }}grid-inverse {{ end }}wrap content">
|
|
<article class="post_content">
|
|
{{- $t := .Title }}
|
|
<h1 class="post_title">{{ $t }}</h1>
|
|
{{- partial "post-meta" . }}
|
|
{{- partial "image-feature" . }}
|
|
{{ if and (gt .WordCount 400 ) (gt (len .TableOfContents) 180) ($s.toc) }}
|
|
<div class="post_toc">
|
|
<div class="wrap-collapsible">
|
|
<input id="collapsible" class="toggle" type="checkbox">
|
|
<label for="collapsible" class="lbl-toggle" tabindex="0">{{ T "overview" }}...</label>
|
|
<div class="collapsible-content">
|
|
<div class="content-inner">
|
|
{{ .TableOfContents }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{ end }}
|
|
<div class="post_body">
|
|
{{- .Content }}
|
|
</div>
|
|
|
|
{{- $showRelatedInArticle := true }}
|
|
{{- if eq $s.showRelatedInArticle false }}
|
|
{{- $showRelatedInArticle = false }}
|
|
{{- else if eq $p.showRelatedInArticle false }}
|
|
{{- $showRelatedInArticle = false }}
|
|
{{- end }}
|
|
{{- if ne $showRelatedInArticle false }}
|
|
{{- partial "related" . }}
|
|
{{- end }}
|
|
|
|
{{- $showComments := true }}
|
|
{{- if eq $s.comments false }}
|
|
{{- $showComments = false }}
|
|
{{- else if eq $p.comments false }}
|
|
{{- $showComments = false }}
|
|
{{- end }}
|
|
{{- if ne $showComments false }}
|
|
{{- partial "comments" . }}
|
|
{{- end }}
|
|
{{- partial "i18nlist" . }}
|
|
|
|
</article>
|
|
{{- if ( ne $p.sidebar false ) }}
|
|
{{- partial "sidebar" . }}
|
|
{{ end }}
|
|
</div>
|
|
{{- end }}
|