Domeniko Gentner 3f7d06fc0f Implementation example
Added example and changed default configuration to use this example by default to be used out of the box.
2020-12-04 13:16:56 +01:00

13 lines
333 B
HTML

{{ define "main" }}
<div class="container">
<div class="content">
{{ $last_article := (.Site.GetPage "blog" .Section).Pages.ByPublishDate }}
{{ range last 2 $last_article }}
<div class="mt-4">
{{ .Render "frontpage_article" }}
</div>
{{ end }}
</div>
</div>
{{ end }}