Fix filter on range

This commit is contained in:
Justin Nguyen 2020-12-22 10:23:26 -08:00
parent 0871dee992
commit d6be608202

View File

@ -20,74 +20,74 @@
<div class="sections"> <div class="sections">
{{ range .Site.Menus.main }} {{ range .Site.Menus.main }}
<div id="{{ .Identifier }}" class="posts section"> {{ if in (first 2 .URL) "#" }}
<h1 class="section-header">{{ .Name }}</h1> <div id="{{ .Identifier }}" class="posts section">
{{ if ne .Identifier $.Site.Params.contentTypeName }} <h1 class="section-header">{{ .Name }}</h1>
{{ if in (first 2 .URL) "#" }} {{ if ne .Identifier $.Site.Params.contentTypeName }}
<div class="post"> <div class="post">
{{ $section := path.Join "homepage" .Identifier }} {{ $section := path.Join "homepage" .Identifier }}
{{ with $.Site.GetPage $section }} {{ with $.Site.GetPage $section }}
{{ partial "section.html" . }} {{ partial "section.html" . }}
{{ end }} {{ end }}
</div> </div>
{{ end }} {{ else }}
{{ else }} {{ range $paginator.Pages }}
{{ range $paginator.Pages }} <div class="post on-list">
<div class="post on-list"> <h1 class="post-title">
<h1 class="post-title"> <a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
<a href="{{ .Permalink }}">{{ .Title | markdownify }}</a> </h1>
</h1> <div class="post-meta">
<div class="post-meta"> <span class="post-date">
<span class="post-date"> {{ with .Params.daterange }}
{{ with .Params.daterange }} {{ . }}
{{ . }} {{ else }}
{{ .Date.Format "01-02-2006" }}
{{ end }}
</span>
{{ with .Params.Author }}
<span class="post-author">:: {{ . }}</span>
{{ end }}
</div>
{{ if .Params.tags }}
<span class="post-tags">
{{ range .Params.tags }}
#<a href="{{ (urlize (printf "tags/%s/" . )) | absLangURL }}">
{{- . -}}
</a>&nbsp;
{{ end }}
</span>
{{ end }}
{{ if .Params.Cover }}
<img src="{{ .Params.Cover | absURL }}" class="post-cover" alt="{{ .Title | plainify | default " " }}" />
{{ end }}
<div class="post-content">
{{ if .Params.showFullContent }}
{{ .Content | markdownify }}
{{ else if .Description }}
{{ .Description | markdownify }}
{{ else }} {{ else }}
{{ .Date.Format "01-02-2006" }} {{ if .Truncated }}
{{ .Summary | markdownify }}
{{ end }} {{ end }}
</span>
{{ with .Params.Author }}
<span class="post-author">:: {{ . }}</span>
{{ end }}
</div>
{{ if .Params.tags }}
<span class="post-tags">
{{ range .Params.tags }}
#<a href="{{ (urlize (printf "tags/%s/" . )) | absLangURL }}">
{{- . -}}
</a>&nbsp;
{{ end }} {{ end }}
</span> </div>
{{ end }}
{{ if .Params.Cover }} {{ if not .Params.showFullContent }}
<img src="{{ .Params.Cover | absURL }}" class="post-cover" alt="{{ .Title | plainify | default " " }}" /> <div>
{{ end }} <a class="read-more button"
href="{{.RelPermalink}}">{{ $.Site.Params.ReadMore }} →</a>
<div class="post-content"> </div>
{{ if .Params.showFullContent }}
{{ .Content | markdownify }}
{{ else if .Description }}
{{ .Description | markdownify }}
{{ else }}
{{ if .Truncated }}
{{ .Summary | markdownify }}
{{ end }}
{{ end }} {{ end }}
</div> </div>
{{ end }}
{{ if not .Params.showFullContent }} <!--{ { partial "pagination.html" $ } }--> TODO: Update pagination <!-- originally . instead of $ -->
<div>
<a class="read-more button"
href="{{.RelPermalink}}">{{ $.Site.Params.ReadMore }} →</a>
</div>
{{ end }}
</div>
{{ end }} {{ end }}
<!--{ { partial "pagination.html" $ } }--> TODO: Update pagination <!-- originally . instead of $ --> </div>
{{ end }}
</div>
<hr class="section-separator"> <hr class="section-separator">
{{ end }}
{{ end }} {{ end }}
</div> </div>