2021-09-25 20:52:01 -05:00
|
|
|
{{ define "main" }}
|
2022-04-29 19:09:26 -05:00
|
|
|
{{ with .Content }}
|
2022-04-29 23:54:45 -05:00
|
|
|
<div class="homepage-content">
|
|
|
|
{{ . }}
|
|
|
|
</div>
|
2022-05-07 22:24:09 -05:00
|
|
|
<hr>
|
2022-04-29 19:09:26 -05:00
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ if .Site.Params.homepageLatestPosts }}
|
2022-05-04 22:02:36 -05:00
|
|
|
<div class="homepage-latest-posts">
|
2022-04-29 23:54:45 -05:00
|
|
|
<h1>
|
|
|
|
{{ i18n "latest_posts" }}
|
|
|
|
{{ partial "rss-link.html" . }}
|
|
|
|
</h1>
|
2022-04-29 19:09:26 -05:00
|
|
|
|
2022-05-06 21:14:42 -05:00
|
|
|
{{ partial "page-list.html" (.Paginate .Site.RegularPages).Pages }}
|
2022-04-29 19:09:26 -05:00
|
|
|
|
2022-04-29 23:54:45 -05:00
|
|
|
{{ partial "pagination.html" . }}
|
|
|
|
</div>
|
2022-04-29 19:09:26 -05:00
|
|
|
{{ end }}
|
2021-09-25 20:52:01 -05:00
|
|
|
{{ end }}
|