16 lines
396 B
HTML
16 lines
396 B
HTML
|
{{ define "main" }}
|
||
|
<article class="prose max-w-full dark:prose-invert">
|
||
|
{{ with .Title }}
|
||
|
<header>
|
||
|
<h1>{{ . | emojify }}</h1>
|
||
|
</header>
|
||
|
{{ end }}
|
||
|
<section>{{ .Content | emojify }}</section>
|
||
|
</article>
|
||
|
|
||
|
{{ range first 3 ( where .Site.RegularPages "Type" "posts"
|
||
|
).ByPublishDate.Reverse }}
|
||
|
<h4><a href="{{ .Permalink }}">{{ .Title }}</a></h4>
|
||
|
<p>{{.Summary}}</p>
|
||
|
{{ end }} {{ end }}
|