InkSoul/themes/meme_cdn/layouts/index.html

18 lines
574 B
HTML
Raw Normal View History

2023-06-18 23:16:41 +08:00
{{ define "main" }}
<!-- Layout Poetry -->
{{ if eq .Site.Params.homeLayout "poetry" }}
{{ partial "pages/home-poetry.html" . }}
{{ end }}
<!-- Layout Footage -->
{{ if eq .Site.Params.homeLayout "footage" }}
{{ partial "pages/home-footage.html" . }}
{{ end }}
<!-- Layout Posts -->
{{ if eq .Site.Params.homeLayout "posts" }}
{{ partial "pages/home-posts.html" . }}
{{ end }}
<!-- Layout Page -->
{{ if eq .Site.Params.homeLayout "page" }}
{{ partial "pages/post.html" . }}
{{ end }}
{{ end }}