40 lines
1.4 KiB
HTML
40 lines
1.4 KiB
HTML
{{ define "main" }}
|
|
{{- partial "inject/content-before.html" . -}}
|
|
<article class="card {{ if .Site.Params.discreteCards }}discrete{{ end }} single">
|
|
<h1>{{ .Title }}</h1>
|
|
{{ if (.Params.showDate | default true) }}
|
|
<p class="date">
|
|
<span title='{{ i18n "date" }}'> </span>
|
|
{{- partial "date.html" .Date -}}
|
|
</p>
|
|
{{ end }}
|
|
{{ if .Params.Image }}
|
|
<img src="{{ .Params.Image }}" alt="" />
|
|
{{ end }}
|
|
<div class="articleToc">
|
|
{{ .TableOfContents }}
|
|
<hr />
|
|
</div>
|
|
<div>{{ .Content }}</div>
|
|
</article>
|
|
{{ if .Params.tags }}
|
|
{{ if not .Site.Params.discreteCards }}<hr />{{ end }}
|
|
<p class="articleTagsContainer">
|
|
<span> </span>
|
|
<strong>{{ i18n "tagsColumn" }}</strong>
|
|
{{ range sort .Params.tags }}
|
|
<a
|
|
{{ if site.Params.discreteTags | default false }}
|
|
class="discreteTag"
|
|
{{ end }}
|
|
href="/tags/{{ . | urlize }}">#{{ . }}</a>
|
|
{{ end }}
|
|
</p>
|
|
{{ end }}
|
|
{{- partial "inject/content-after.html" . -}}
|
|
{{- partial "share_on_fediverse.html" . -}}
|
|
{{- partial "commento.html" . -}}
|
|
{{- partial "cactus_chat.html" . -}}
|
|
{{- partial "related_articles.html" . -}}
|
|
{{ end }}
|