Added example and changed default configuration to use this example by default to be used out of the box.
13 lines
333 B
HTML
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 }}
|