26 lines
944 B
HTML
26 lines
944 B
HTML
<div class="td-content">
|
|
{{- if .HasShortcode "kat-button" -}}
|
|
<div class="pageinfo pageinfo-secondary">
|
|
{{ T "katacoda_message" | safeHTML }}
|
|
</div>
|
|
{{- end -}}
|
|
<h1 data-pagefind-weight="10">{{ .Title }}</h1>
|
|
{{ with .Params.description }}<div class="lead">{{ . | markdownify }}</div>{{ end }}
|
|
<header class="article-meta">
|
|
{{ partial "taxonomy_terms_article_wrapper.html" . }}
|
|
{{ if (and (not .Params.hide_readingtime) (.Site.Params.ui.readingtime.enable)) }}
|
|
{{ partial "reading-time.html" . }}
|
|
{{ end }}
|
|
</header>
|
|
{{ .Content }}
|
|
{{ if (and (not .Params.hide_feedback) (.Site.Params.ui.feedback.enable) (.Site.Config.Services.GoogleAnalytics.ID)) }}
|
|
{{ partial "feedback.html" .Site.Params.ui.feedback }}
|
|
<br />
|
|
{{ end }}
|
|
{{ if (.Site.Config.Services.Disqus.Shortname) }}
|
|
<br />
|
|
{{ partial "disqus-comment.html" . }}
|
|
{{ end }}
|
|
{{ partial "page-meta-lastmod.html" . }}
|
|
</div>
|