25 lines
980 B
HTML
25 lines
980 B
HTML
{{ define "main" }}
|
|
<section itemscope itemtype="http://schema.org/Collection" class="max-w-3xl mx-auto leading-relaxed my-6">
|
|
{{- $pctx := . -}}
|
|
{{- if .IsHome -}}{{ $pctx = .Site }}{{- end -}}
|
|
{{- $pages := $pctx.RegularPages -}}
|
|
|
|
{{ range (where $pages "Section" "!=" "") }}
|
|
<article itemscope itemtype="http://schema.org/Article" class="flex flex-col mt-6 mb-12">
|
|
{{- partial "meta.html" . -}}
|
|
<h2 itemprop="name" class="text-2xl"><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
|
|
<p itemprop="datePublished" content="{{ .Date.Format "2006-01-02" }}" class="">{{ .Date.Format "2006/01/02" }}
|
|
</p>
|
|
<div class="py-2">
|
|
{{ if .Description }}
|
|
{{ .Description | markdownify }}
|
|
{{ else }}
|
|
{{ if .Truncated }}
|
|
{{ .Summary | truncate 150 | markdownify }}...
|
|
{{ end }}
|
|
{{ end }}
|
|
</div>
|
|
</article>
|
|
{{ end }}
|
|
</section>
|
|
{{ end }} |