This repository has been archived on 2020-04-22. You can view files and clone it, but cannot push or open issues or pull requests.
victor-hugo/site/themes/hugo-strata-theme/layouts/partials/recent-posts.html

17 lines
368 B
HTML
Executable File

<section>
{{ with .Site.Params.recentposts.title }}
<h2>{{ . }}</h2>
{{ end }}
<div class="row">
<br>
<p>
<ol class="recent-posts">
{{ range first 5 (where .Data.Pages "Section" "post") }}
<li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
{{ end }}
</ol>
</p>
</div>
</section>