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

37 lines
988 B
HTML
Raw Normal View History

2020-03-09 10:40:44 +00:00
<h1>{{ .Site.Params.author }}</h1>
<h2>{{ .Site.Params.info }}</h2>
<h3>Skills</h3>
{{ with .Site.Params.skill }}
<ul>
{{ range sort . }}
2020-10-03 13:38:34 +00:00
<li>{{ .content | safeHTML }}</li>
2020-03-09 10:40:44 +00:00
{{ end }}
</ul>
{{ end }}
2020-11-22 14:57:32 +00:00
<div class="flex-columns">
<div class="flex-column" id="recent_posts">
<h3>Recent posts</h3>
2020-03-09 10:40:44 +00:00
2020-11-22 14:57:32 +00:00
{{ $pages := where site.RegularPages "Type" "in" site.Params.mainSections }}
<ul>
{{ range first 7 $pages }}
<li>{{ .Title }}<br/><a href="{{ .Params.ExternalLink | default .RelPermalink }}">{{ .Params.ExternalLink | default .RelPermalink }}</a></li>
{{ end }}
</ul>
</div>
2020-11-23 11:37:18 +00:00
2020-11-22 14:57:32 +00:00
<div class="flex-column" id="popular_posts">
<h3>Popular stuff</h3>
2020-03-09 10:40:44 +00:00
2020-11-22 14:57:32 +00:00
{{ with .Site.Params.popular }}
<ul>
{{ range sort . }}
<li>{{ .name }}<br/><a href="{{ .url }}">{{ .url }}</a></li>
{{ end }}
</ul>
{{ end }}
</div>
2020-11-23 11:37:18 +00:00
</div>