mirror of
https://github.com/BioArchLinux/hugo-theme-bioarchlinux.git
synced 2025-03-10 06:14:01 +00:00
16 lines
770 B
HTML
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" .}}
|