PUBLISH: Fix text styles on favorites page

This commit is contained in:
Campbell Alden 2022-10-19 00:42:06 +09:00
parent 8ea4b817c2
commit 33da87e457
5 changed files with 204 additions and 202 deletions

View file

@ -1,17 +1,17 @@
{{ define "main" }}
<div class="core-content">
<section class="home-page-header">
<header class="stack s1">
<h1>{{ .Title }}</h1>
<section class="home-page-header">
<header class="stack s1">
<h1>{{ .Title }}</h1>
<div class="core-content">
{{- .Content -}}
</header>
<div class="cards">
{{ range (where .Site.Pages "Section" "reviews") }}
{{ range (where .Pages ".Params.favorite" "==" true) }}
{{- .Render "summary" -}}
{{ end }}
{{ end }}
</div>
</section>
</div>
</header>
<div class="cards">
{{ range (where .Site.Pages "Section" "reviews") }}
{{ range (where .Pages ".Params.favorite" "==" true) }}
{{- .Render "summary" -}}
{{ end }}
{{ end }}
</div>
</section>
{{end}}