Rename index.html to home.html in layouts

This commit is contained in:
2022-06-12 18:51:30 -05:00
parent e34d2109ec
commit 2a40664bb6

21
layouts/home.html Normal file
View File

@ -0,0 +1,21 @@
{{ define "main" }}
{{ with .Content }}
<article class="homepage-content">
{{ . }}
</article>
<hr>
{{ end }}
{{ if .Site.Params.homepageLatestPosts }}
<div class="homepage-latest-posts">
<h1>
{{ i18n "latest_posts" }}
{{ partial "rss-link.html" . }}
</h1>
{{ partial "page-list.html" (.Paginate .Site.RegularPages).Pages }}
{{ partial "pagination.html" . }}
</div>
{{ end }}
{{ end }}