dairy | new theme

This commit is contained in:
Don Harper 2021-03-03 10:56:28 -06:00
parent 5ae63a1d7d
commit 6c3a14b311
65 changed files with 5028 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{{ define "main" }}
<div ref="streamContainer" class="stream-container">
<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="{{.FirstSection.Permalink}}">{{.FirstSection.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>
</div>
{{ end }}