templates/blogrecs.html.gotmpl (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
<!doctype html>
<html lang="en">
<head>
<title>crispy blog recommendations</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="../static/global.css" />
<link rel="stylesheet" href="../static/center.css" />
<link rel="icon" type="image/png" href="/static/banan_icon.png" />
</head>
<body>
<div>
<h2>some posts I've enjoyed reading and want to share</h2>
{{range .}}
<p><a href="{{.URL}}">{{.Title}}</a> - {{.Author}}</p>
{{end}}
</div>
<div>
<a href="/en/blogrecs.xml">RSS</a>
</div>
</body>
|