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>
26 lines
865 B
HTML
Executable File
26 lines
865 B
HTML
Executable File
<!-- Posts -->
|
|
{{ $data := .siteData }}
|
|
<section class="posts">
|
|
{{ range .posts.Pages }}
|
|
<article>
|
|
<header>
|
|
{{ if and (not .Date.IsZero) (not .Params.pinned) }}
|
|
<span class="date">{{ partial "format-date-ru.html" .Date }}</span>
|
|
{{ end }}
|
|
<h2><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
|
|
</header>
|
|
{{ if .Params.image }}
|
|
<a href="{{ .Permalink }}" class="image main"><img src="{{ .Params.image | relURL }}" alt="{{ .Title }}" loading="lazy" /></a>
|
|
{{ end }}
|
|
{{ if .Description }}
|
|
<p>{{ .Description }}</p>
|
|
{{ else }}
|
|
<p>{{ .Summary }}</p>
|
|
{{ end }}
|
|
<ul class="actions">
|
|
<li><a href="{{ .Permalink }}" class="button">{{ $data.post.linktext }}</a></li>
|
|
</ul>
|
|
</article>
|
|
{{ end }}
|
|
</section>
|