mirror of
https://github.com/alanorth/hugo-theme-bootstrap4-blog.git
synced 2024-11-17 09:47:05 +01:00
Merge pull request #49 from lpar/master
Add caching of last N posts in sidebar to improve performance
This commit is contained in:
commit
e23619e6fb
9
layouts/partials/recent.html
Normal file
9
layouts/partials/recent.html
Normal 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>
|
@ -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 }}
|
||||
|
Loading…
Reference in New Issue
Block a user