Files
ptp/themes/hugo-theme-massively/layouts/_default/single.html
T
2026-01-15 22:24:06 +03:00

48 lines
1.7 KiB
HTML
Executable File

{{ partial "htmlhead" . }}
<body lang='{{ .Site.Language.Lang | default "en-us" }}' class="is-preload">
<!-- Wrapper -->
<div id="wrapper">
{{ partial "header" . }}
{{ partial "nav" . }}
<!-- Main -->
<div id="main">
<!-- Post -->
<section class="post">
<header class="major">
{{ if and (not .Date.IsZero) (not .Params.pinned) }}
<span class="date">{{ partial "format-date-ru.html" .Date }}</span>
{{ end }}
<h1>{{ .Title }}</h1>
<p>{{ .Description }}</p>
</header>
{{ if .Params.image }}
<div class="image main"><img src="{{ .Params.image | relURL }}" alt="" /></div>
{{ end }}
{{ .Content }}
{{ partial "postcustom" . }}
{{ if not (eq .Params.disableComments true) }}
{{ template "_internal/disqus.html" . }}
{{ end }}
</section>
</div>
<a href="#navPanel" id="navPanelToggle">{{ i18n "NAV_MENU" . }}</a>
{{ partial "footer/index" . }}
{{ partial "copyright" . }}
</div>
<!-- Global Back to Top Button -->
{{ partial "back-to-top" . }}
{{ template "_internal/google_analytics.html" . }}
{{ partial "scripts/index" . }}
</body>
</html>