1
0
mirror of https://github.com/BBaoVanC/bobatheme.git synced 2025-06-19 12:07:29 -05:00
Files
archetypes
assets
data
exampleSite
i18n
layouts
_default
authors
partials
series
shortcodes
taxonomy
index.html
robots.txt
.editorconfig
.gitignore
.gitmodules
LICENSE
README.md
config.yaml
theme.toml
bobatheme/layouts/index.html

22 lines
528 B
HTML

{{ define "main" }}
{{ with .Content }}
<div class="homepage-content">
{{ . }}
</div>
<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 }}