-
Notifications
You must be signed in to change notification settings - Fork 907
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[BSv5] Fix blog posts list flex layout (#1566)
- Loading branch information
Showing
3 changed files
with
49 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,44 @@ | ||
{{ define "main" }} | ||
{{ if (and .Parent .Parent.IsHome) }} | ||
{{ $.Scratch.Set "blog-pages" (where .Site.RegularPages "Section" .Section) }} | ||
{{ else }} | ||
{{$.Scratch.Set "blog-pages" .Pages }} | ||
{{ end }} | ||
{{ if (and .Parent .Parent.IsHome) -}} | ||
{{ $.Scratch.Set "blog-pages" (where .Site.RegularPages "Section" .Section) -}} | ||
{{ else -}} | ||
{{$.Scratch.Set "blog-pages" .Pages -}} | ||
{{ end -}} | ||
|
||
<div class="row"> | ||
<div class="col-12"> | ||
{{- if .Pages -}} | ||
{{ $pag := .Paginate (( $.Scratch.Get "blog-pages").GroupByDate "2006" )}} | ||
{{ if .Pages -}} | ||
{{ $pag := .Paginate (( $.Scratch.Get "blog-pages").GroupByDate "2006" ) -}} | ||
{{ range $pag.PageGroups }} | ||
<h2>{{ T "post_posts_in" }} {{ .Key }}</h2> | ||
<ul class="list-unstyled mt-4"> | ||
<ul class="td-blog-posts-list"> | ||
{{ range .Pages }} | ||
<li class="media mb-4"> | ||
<div class="media-body"> | ||
<li class="td-blog-posts-list__item"> | ||
<div class="td-blog-posts-list__body"> | ||
<h5 class="mt-0 mb-1"><a href="{{ .RelPermalink }}">{{ .Title }}</a></h5> | ||
<p class="mb-2 mb-md-3"><small class="text-muted">{{ .Date.Format ($.Param "time_format_blog") }} {{ T "ui_in"}} {{ .CurrentSection.LinkTitle }}</small></p> | ||
<header class="article-meta"> | ||
{{ partial "taxonomy_terms_article_wrapper.html" . }} | ||
{{ if (and (not .Params.hide_readingtime) (.Site.Params.ui.readingtime.enable)) }} | ||
{{ partial "reading-time.html" . }} | ||
{{ end }} | ||
{{ partial "taxonomy_terms_article_wrapper.html" . -}} | ||
{{ if (and (not .Params.hide_readingtime) (.Site.Params.ui.readingtime.enable)) -}} | ||
{{ partial "reading-time.html" . -}} | ||
{{ end -}} | ||
</header> | ||
{{ partial "featured-image.html" (dict "p" . "w" 250 "h" 125 "class" "float-start me-3 pt-1 d-none d-md-block") }} | ||
{{ partial "featured-image.html" (dict "p" . "w" 250 "h" 125 "class" "float-start me-3 pt-1 d-none d-md-block") -}} | ||
<p class="pt-0 mt-0">{{ .Plain | safeHTML | truncate 250 }}</p> | ||
<p class="pt-0"><a href="{{ .RelPermalink }}" aria-label="{{ T "ui_read_more"}} - {{ .LinkTitle }}">{{ T "ui_read_more"}}</a></p> | ||
</div> | ||
</li> | ||
{{ end }} | ||
{{ end -}} | ||
</ul> | ||
{{ end }} | ||
{{ end -}} | ||
{{ end }} | ||
</div> | ||
</div> | ||
<div class="row ps-2 pt-2"> | ||
<div class="col"> | ||
{{ if .Pages }} | ||
{{ template "_internal/pagination.html" . }} | ||
{{ end }} | ||
{{ if .Pages -}} | ||
{{ template "_internal/pagination.html" . -}} | ||
{{ end -}} | ||
</div> | ||
</div> | ||
{{ end }} | ||
{{ end -}} |