mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-24 18:19:01 +00:00
42 lines
1.4 KiB
HTML
42 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="{{ .Site.LanguageCode | default " en" }}">
|
|
|
|
<head>
|
|
{{ partial "head.html" . -}}
|
|
</head>
|
|
|
|
<body>
|
|
<div id="links">
|
|
{{ range $key, $value := sort (index $.Site.Data (slice "foodogsquared-homepage" "links")) "weight" }}
|
|
{{- $name := default $key $value.name -}}
|
|
<section
|
|
id="section-{{ $name }}"
|
|
{{ with $value.grid }}
|
|
style="{{ with .column }}grid-column: span {{ . }};{{ end }}{{ with .row }}grid-row: span {{ . }};{{ end }}"
|
|
{{ end }}
|
|
>
|
|
{{ with $value.icon }}
|
|
<div class="nav-icon">{{ partial "icon.html" . }}</div>
|
|
{{ end }}
|
|
<div class="nav-header">{{ $name }}</div>
|
|
{{ with $value.flavorText }}
|
|
<div class="flavor-text">{{ . }}</div>
|
|
{{ end }}
|
|
<hr />
|
|
|
|
<nav>
|
|
{{ range $item := $value.links }}
|
|
{{ if $item.subsection }}
|
|
<span class="nav-subsection">{{ $item.text }}</span>
|
|
{{ else }}
|
|
<a href="{{ safeURL $item.url }}">{{ $item.text }}</a>
|
|
{{ end }}
|
|
{{ end }}
|
|
</nav>
|
|
</section>
|
|
{{ end }}
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|