weekly/templates/weekly.html

24 lines
562 B
HTML

<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 }}
</div>
{{ end }}
</div>
</body>
</html>