diff options
Diffstat (limited to 'layouts/index.html')
-rw-r--r-- | layouts/index.html | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/layouts/index.html b/layouts/index.html index 07fbc94..5a9c4ed 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -1,10 +1,8 @@ {{ define "main" }} -<main> - {{ .Content }} - <ul> - {{ range .Pages }} - <li><a href="{{ .Permalink }}">{{ .Title }}</a></li> - {{ end }} - </ul> -</main> +{{ .Content }} +<ul> + {{ range .Pages }} + <li><a href="{{ .Permalink }}">{{ .Title }}</a></li> + {{ end }} +</ul> {{ end }} |