17 lines
368 B
HTML
Executable File
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>
|