PaperModX/layouts/newsletter/section.html

49 lines
1.3 KiB
HTML
Raw Normal View History

{{/* section is AKA list */}}
{{- define "main" }}
<div class="main-icon"></div>
<div class="content">
<div class="first-entry">
<header class="entry-header">
<h1>{{ .Title }}</h1>
2022-09-07 15:29:52 +01:00
{{ with .Param "subtitle" }}<div class="subtitle">{{ . }}</div>{{ end }}
</header>
<section class="entry-content">{{ .Description | markdownify }}</section>
2022-09-07 09:49:18 +01:00
{{- partial "newsletter_sub_form.html"}}
</div>
{{- $pages := where .Pages "Params.hidden" "!=" true }}
2022-09-07 15:29:52 +01:00
<div class="list">
{{- range first 5 $pages }}
<div class="item">
<div class="date">
{{- if not .Date.IsZero -}}
{{ .Date | time.Format (default "January 2, 2006" site.Params.DateFormat) }}
{{- end }}
</div>
<div class="title">
<a href="{{ .Permalink }}">{{- .Title }}
{{- if .Draft }}<em>[Draft]</em>{{- end }}
{{- if .Weight }}<em>[Pinned]</em>{{- end }}
</a>
</div>
<div class="issueno">{{ with .Param "issueno" }}#{{ . }}{{ end }}</div>
</div>
{{- end }}
2022-09-07 15:29:52 +01:00
</div>
<div>
2022-09-07 15:29:52 +01:00
{{- with .Param "archivesSlug" }}
<a href="{{ $.RelPermalink }}{{ . }}/">Archives</a>
{{- end }}
{{- with .Param "rssUrl" }}
<a href="{{ site.BaseURL }}{{ . }}">RSS</a>
{{- end }}
</div>
</div>
{{ end }}