da5b40d168
- First (pinned) post on mobile: title and image centered - Pagination: restored page counter on mobile, buttons above footer - Typography and layout minor improvements Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
48 lines
1.7 KiB
HTML
Executable File
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="{{ .Title }}" loading="lazy" /></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>
|