hugo-graceful-simplicity/layouts/_default/list.html

20 lines
529 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>{{ .Site.Title }}</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<h1>Christoffer Müller Madsen</h1>
<h2>All writings</h2>
<ul>
{{ range first 10 .Data.Pages }}
<li><a href="{{ .Permalink }}">{{ .Title }} ({{ .Date.Format "January 2, 2006" }})</a></li>
{{ end }}
</ul>
</body>
</html>