13 lines
233 B
HTML
13 lines
233 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<body>
|
|
<h1>Posts</h1>
|
|
{{- range first 10 .Data.Pages }}
|
|
<h4><a href="{{ .Permalink }}">{{ .Title }}</a></h4>
|
|
{{- end }}
|
|
<h4><a href="{{ .Site.BaseURL }}">Home</a></h4>
|
|
</body>
|
|
|
|
</html>
|