Remove partialCached for now because I'm worried of it causing issues

It didn't last very long. Speed isn't really a concern currently since
my sites all generate in ~50ms (on my computer, at least).
This commit is contained in:
2021-10-11 21:35:16 -05:00
parent 93ce39fdac
commit e62ccfd085
6 changed files with 17 additions and 17 deletions

View File

@ -1,23 +1,23 @@
{{ define "main" }}
{{ if or (eq .Kind "term") (eq .Kind "taxonomy") }}
<h1>
{{ partialCached "icon.html" "filter" "filter" }}
{{ partial "icon.html" "filter" }}
{{ i18n "filtering_for" .Title }}
{{ if eq .Kind "term" }}
<span class="rss-link">
{{ with .OutputFormats.Get "rss" }}
<a href="{{ .Permalink }}">{{ partialCached "icon.html" "rss" "rss" }}</a>
<a href="{{ .Permalink }}">{{ partial "icon.html" "rss" }}</a>
{{ end }}
</span>
{{ end }}
</h1>
{{ else }}
<h1>
{{ with .Params.icon }}{{ partialCached "icon.html" . . }}{{ end }}
{{ with .Params.icon }}{{ partial "icon.html" . }}{{ end }}
{{ .Title | markdownify }}
<span class="rss-link">
{{ with .OutputFormats.Get "rss" }}
<a href="{{ .Permalink }}">{{ partialCached "icon.html" "rss" "rss" }}</a>
<a href="{{ .Permalink }}">{{ partial "icon.html" "rss" }}</a>
{{ end }}
</span>
</h1>