hugo-theme-archbio/layouts/partials/widgets/recent_articles.html
starsareintherose 727c862dda init
2021-12-28 21:09:14 +00:00

31 lines
1 KiB
HTML

{{ if .Site.Params.widgets.recent_articles }}
<div class="widget-wrap">
<div class="widget">
<ul id="recent-post">
<li id="first-recent"><a href="sitemap.xml" id="firstmove" class="move"><h3 class="widget-title">
Latest News
<!--{{with .Site.Data.l10n.widgets.recent_articles.title}}{{.}}{{end}} -->
</h3></a></li>
{{ range first 10 (where .Site.Pages "Type" "post") }}
<li>
<!--
<div class="item-thumbnail">
<a href="{{ .Permalink }}" class="thumbnail">
{{ if isset .Params "banner" }}
<span style="background-image:url({{ $.Site.BaseURL }}{{ .Params.banner }})" alt="{{ $.Title }}" class="thumbnail-image"></span>
{{else}}
<span class="thumbnail-image thumbnail-none"></span>
{{ end }}
</a>
</div>
-->
<a href="{{ .Permalink }}" class="move">{{ .Title }}</a>
</li>
{{ end }}
</ul>
</div>
</div>
{{ end }}