lieu/html/list-template.html

23 wiersze
664 B
HTML

<html lang="en">
<head>
<link href="/links/search.css" rel="stylesheet">
<title>{{ .Title }}—Lieu</title>
<link rel="shortcut icon" href="/links/favicon.png">
<link rel="apple touch icon" href="/links/favicon.png">
</head>
<body>
<a class="about-link" href="/about">About</a>
<h1><a href="/">Lieu</a></h1>
<h2>{{ .Title }}</h2>
<main>
<ul>
{{ range .URLs }}
<li>
<a class="link" href="{{ .URL }}">{{ .Title }}</a>
</li>
{{ end }}
</ul>
</main>
</body>
</html>