76 lines
2.8 KiB
HTML
76 lines
2.8 KiB
HTML
{{- define "main" }}
|
|
|
|
<article class="post-single">
|
|
<header class="post-header">
|
|
<h1 class="post-title">
|
|
{{ .Title }}
|
|
{{- if .Draft }}<div class="entry-isdraft"><sup> [draft]</sup></div>{{- end }}
|
|
</h1>
|
|
{{- if .Params.hideMeta }}{{ else }}
|
|
<div class="post-meta">
|
|
{{- partial "post_meta.html" . -}}
|
|
{{- if .IsTranslated -}} |
|
|
<ul class="i18n_list">
|
|
{{- i18n "translations" | default "Translations"}}:
|
|
{{- range .Translations }}
|
|
<li>
|
|
<a href="{{ .RelPermalink }}">
|
|
{{- if (and $.Site.Params.displayFullLangName (.Language.LanguageName)) }}
|
|
{{- .Language.LanguageName | emojify | humanize -}}
|
|
{{- else }}
|
|
{{- .Lang | humanize -}}
|
|
{{- end -}}
|
|
</a>
|
|
</li>
|
|
{{- end }}
|
|
</ul>
|
|
{{- end }}
|
|
</div>
|
|
{{- end}}
|
|
</header>
|
|
{{- partial "cover.html" (dict "cxt" . "IsHome" false) }}
|
|
{{- if .Params.ShowToc }}
|
|
<div class="toc">
|
|
<details {{if .Params.TocOpen }} open{{ end }}>
|
|
<summary>
|
|
<div class="details" accesskey="c">{{- i18n "toc" | default "Table of Contents" }}</div>
|
|
</summary>
|
|
<blockquote>
|
|
{{- partial "toc.html" . }}
|
|
</blockquote>
|
|
</details>
|
|
</div>
|
|
{{- end }}
|
|
<div class="post-content">
|
|
{{- partial "anchored_headings.html" .Content -}}
|
|
</div>
|
|
<footer class="post-footer">
|
|
<ul class="post-tags">
|
|
<li>
|
|
<a id="error-here" type="button" onclick="ga('send', {hitType: 'event',eventCategory: 'Report',eventAction: 'report',eventLabel: document.title,eventName: 'report'});document.getElementById('check').setAttribute('fill', 'white');document.getElementById('thank-you-text').innerHTML = 'Спасибо!';">
|
|
<svg id="check" style="vertical-align: middle; margin-right: 10px;" fill="none" stroke="currentColor" stroke-width="16" stroke-linecap="round"
|
|
stroke-linejoin="round" enable-background="new 0 0 24 24" height="24" viewBox="0 0 515.556 515.556" width="24" xmlns="http://www.w3.org/2000/svg"><path d="m0 274.226 176.549 176.886 339.007-338.672-48.67-47.997-290.337 290-128.553-128.552z"/></svg>
|
|
<span id="thank-you-text">Тут ошибочка...</span>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
{{- if .Params.tags }}
|
|
<ul class="post-tags">
|
|
{{- range .Params.tags }}
|
|
{{- $href := print (absLangURL "tags/") (urlize .) }}
|
|
<li><a href="{{ $href }}">{{ . }}</a></li>
|
|
{{- end }}
|
|
</ul>
|
|
{{- end }}
|
|
{{- if (and .Site.Params.ShowShareButtons (ne .Params.disableShare true) ) }}
|
|
{{- partial "share_icons.html" . }}
|
|
{{- end }}
|
|
</footer>
|
|
|
|
{{- if and ($.Site.Params.comments) (ne .Params.comments false) }}
|
|
{{- partial "comments.html" . }}
|
|
{{- end }}
|
|
</article>
|
|
|
|
{{- end }}{{/* end main */}}
|