website/themes/hugo-theme-wave/layouts/partials/widgets/recent_articles.html
Paul Lecuq cbd1c10fff
All checks were successful
continuous-integration/drone/push Build is passing
updated website theme
2023-12-16 00:45:03 +01:00

12 lines
435 B
HTML

{{ if .Site.Params.widgets.recent_articles }}
<div class="widget-wrap">
<div class="widget">
<ul id="recent-post">
<li id="first-recent"><a href="/index.xml" id="firstmove" class="move"><h3 class="widget-title">Posts</h3></a></li>
{{ range first 10 (where .Site.RegularPages "Type" "post") }}
<li><a href="{{ .Permalink }}" class="move"> {{ .Title }}</a></li>
{{ end }}
</ul>
</div>
</div>
{{ end }}