25 lines
917 B
HTML
25 lines
917 B
HTML
<section class="list">
|
|
<div class="header">
|
|
<h3>Latest Articles</h3>
|
|
|
|
{{ if index $ "showAllArticles" }}
|
|
<div class="view-all">
|
|
<a href="javascript:void(0)">All articles</a>
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
<div class="list-items-container">
|
|
<ul class="list-items">
|
|
{{ range ( first 3 (where site.RegularPages "Type" "snippets").ByDate.Reverse ) }}
|
|
<li class="list-item" data-href="{{ .Permalink }}">
|
|
<img class="list-item-image" src="//via.placeholder.com/128" alt="Article Topic">
|
|
<div class="list-item-text">
|
|
<h4 class="list-item-title">{{ .Title }}</h4>
|
|
<span class="list-item-date">{{ .Date.Format "January 2, 2006" }}</span>
|
|
</div>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
</div>
|
|
</section>
|