devroom.io/themes/devroom-2020/layouts/partials/home.html

37 lines
917 B
HTML

<h1>{{ .Site.Params.author }}</h1>
<p>{{ .Site.Params.info }}</p>
<h2>Skills</h2>
{{ with .Site.Params.skill }}
<ul>
{{ range sort . }}
<li>{{ .content | safeHTML }}</li>
{{ end }}
</ul>
{{ end }}
<div class="flex-columns">
<div class="flex-column" id="recent_posts">
<h2>Recent posts</h2>
{{ $pages := where site.RegularPages "Type" "in" site.Params.mainSections }}
<ul>
{{ range first 10 $pages }}
<li><a href="{{ .Params.ExternalLink | default .RelPermalink }}">{{ .Title }}</a></li>
{{ end }}
</ul>
</div>
<div class="flex-column" id="popular_posts">
<h2>Popular stuff</h2>
{{ with .Site.Params.popular }}
<ul>
{{ range sort . }}
<li><a href="{{ .url }}">{{ .name }}</a></li>
{{ end }}
</ul>
{{ end }}
</div>
</div>