GoBlog/templates/blogroll.gohtml

31 lines
1.1 KiB
Plaintext

{{ define "title" }}
<title>{{ mdtext .Data.Title }} - {{ mdtext .Blog.Title }}</title>
{{ end }}
{{ define "main" }}
<main>
{{ with .Data.Title }}<h1>{{ mdtext . }}</h1>{{ end }}
{{ with .Data.Description }}{{ md . }}{{ end }}
<p><a href="{{ .Blog.RelativePath .Data.Download }}" class="button" download>{{ string .Blog.Lang "download" }}</a></p>
{{ $lang := .Blog.Lang }}
{{ range .Data.Outlines }}
{{ $title := .Title }}
{{ if not $title }}{{ $title = .Text }}{{ end }}
<h2 id="{{ urlize $title }}">{{ $title }} ({{ len .Outlines }})</h2>
<ul>
{{ range .Outlines }}
{{ $ct := .Title }}
{{ if not $ct }}{{ $ct = .Text }}{{ end }}
<li><a href="{{ .HTMLURL }}" target="_blank">{{ $ct }}</a> (<a href="{{ .XMLURL }}" target="_blank">{{ string $lang "feed" }}</a>)</li>
{{ end }}
</ul>
{{ end }}
</main>
{{ if .CommentsEnabled }}
{{ include "interactions" . }}
{{ end }}
{{ end }}
{{ define "blogroll" }}
{{ template "base" . }}
{{ end }}