Add a couple divs in index.html for organization

This commit is contained in:
BBaoVanC 2022-04-29 23:54:45 -05:00
parent c82d5602bb
commit d41f3facd7
Signed by: bbaovanc
GPG Key ID: 18089E4E3CCF1D3A

View File

@ -1,9 +1,12 @@
{{ define "main" }} {{ define "main" }}
{{ with .Content }} {{ with .Content }}
<div class="homepage-content">
{{ . }} {{ . }}
</div>
{{ end }} {{ end }}
{{ if .Site.Params.homepageLatestPosts }} {{ if .Site.Params.homepageLatestPosts }}
<div class="hompage-latest-posts">
<hr> <hr>
<h1> <h1>
{{ i18n "latest_posts" }} {{ i18n "latest_posts" }}
@ -25,5 +28,6 @@
{{ end }} {{ end }}
{{ partial "pagination.html" . }} {{ partial "pagination.html" . }}
</div>
{{ end }} {{ end }}
{{ end }} {{ end }}