You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
weekly/templates/weekly.html

26 lines
633 B

<html lang="en">
<head>
<title>Weekly summaries</title>
</head>
<body>
<div class="h-feed">
<h1 class="p-name">Weekly</h1>
{{ range . }}
<div class="h-entry">
<h2 class="p-name">{{ .Name }}</h2>
{{ if .Content }}
{{ if .Content.HTML }}
<div class="e-content">{{ .Content.HTML }}</div>
{{ else }}
<div class="p-content">{{ .Content.Text }}</div>
{{ end }}
{{ end }}
<time datetime="{{ .Published }}">{{ .Published }}</time>
</div>
{{ end }}
</div>
</body>
</html>