hugo-theme-bioarchlinux/layouts/index.html
2022-07-29 21:47:17 +01:00

16 lines
770 B
HTML

{{partial "header.html" .}}
<div id="news">
<h3>
<a href="/" title="Browse the blogs">Latest Posts</a>
<span class="arrow"></span>
</h3>
<a href="/index.xml" title="BioArchLinux News RSS Feed" class="rss-icon"><img width="16" height="16" src="/rss.png" alt="RSS Feed" /></a>
{{ range where site.RegularPages "Type" "posts" }}
<h4><a href="{{.Permalink}}" title="{{.Title}}"> {{.Title}}</a></h4>
<p class="timestamp">{{.Date.Format "2006-01-02"}}<p>
<div class="article-content">
{{.Content}}
</div>
{{end}}
</div>
{{partial "footer.html" .}}