Comment system for Hugo
https://labertasche.tuxstash.de/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
333 B
13 lines
333 B
4 years ago
|
{{ 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 }}
|