You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
1.1 KiB
HTML

{{ define "main" }}
<div class="post-list-container post-list-container-shadow">
<div class="post-item-wrapper post-item-wrapper-no-hover">
<div class="post-item post-item-no-gaps">
<div class="post-item-info-wrapper">
<div class="post-item-title post-item-title-small">
<a href="{{ .Parent.RelPermalink }}">{{.Parent.Title}}</a> / {{ .Title }}
</div>
</div>
</div>
</div>
{{- range .Paginator.Pages -}}
<a href="{{ .RelPermalink }}" class="a-block">
<div class="post-item-wrapper">
<div class="post-item post-item-no-gaps">
<div class="post-item-info-wrapper">
<div class="post-item-title">
{{.Title}}
</div>
{{ partial "post-item-meta.html" . }}
</div>
</div>
</div>
</a>
{{- end -}}
</div>
{{ end }}