Add caching of last N posts in sidebar to improve performance

This commit is contained in:
mathew 2017-03-11 16:20:50 -06:00
parent 04ff763688
commit 6d027091d4
2 changed files with 10 additions and 11 deletions

View File

@ -0,0 +1,9 @@
<section class="sidebar-module">
<h4>{{ i18n "recentPosts" }}</h4>
<ol class="list-unstyled">
{{ $num_recent_posts := (index .Site.Params.sidebar "num_recent_posts" | default 5) }}
{{ range first $num_recent_posts (where .Site.RegularPages "Type" "post") }}
<li><a href="{{.RelPermalink}}">{{.Title | markdownify }}</a></li>
{{ end }}
</ol>
</section>

View File

@ -7,17 +7,7 @@
{{ end }}
{{ if .Site.Params.sidebar }}
{{ $num_recent_posts := (index .Site.Params.sidebar "num_recent_posts" | default 5) }}
<section class="sidebar-module">
<h4>{{ i18n "recentPosts" }}</h4>
<ol class="list-unstyled">
{{ range first $num_recent_posts (where .Site.RegularPages "Type" "post") }}
<li><a href="{{.RelPermalink}}">{{.Title | markdownify }}</a></li>
{{ end }}
</ol>
</section>
{{ partialCached "recent.html" .}}
{{ end }}
{{ with .Site.Menus.sidebar }}