13 lines
354 B
HTML
13 lines
354 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ .Site.LanguageCode }}" dir="ltr">
|
|
{{ partial "head.html" . }}
|
|
<body>
|
|
{{.Content}}
|
|
<section id="content" role="main" class="article-list card-columns">
|
|
{{ range $index, $page := .Paginator.Pages }}
|
|
{{ .Render "li" }}
|
|
{{ end }}
|
|
</section>
|
|
</body>
|
|
{{ partial "scripts.html" . }}
|
|
</html> |