25 lines
No EOL
673 B
HTML
25 lines
No EOL
673 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ .Site.Language.Lang }}">
|
|
{{ partial "head.html" . }}
|
|
<body hx-boost="true" lang="{{ .Site.Language.Lang }}">
|
|
{{ partial "nav.html" . }}
|
|
<div id="page-content">
|
|
<div id="home-introduction" class="container">
|
|
{{ range sort (index .Site.Data.introduction .Site.Language.Lang) "weight" }}
|
|
<div>{{ .title }}</div>
|
|
{{ end }}
|
|
</div>
|
|
|
|
<div id="home-blog-posts" class="container">
|
|
<div class="row">
|
|
<div class="col m12 l12">
|
|
{{ partial "home-blog-posts.html" . }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{{ partial "home-bottom.html" . }}
|
|
</div>
|
|
{{ partial "footer.html" . }}
|
|
</body>
|
|
</html> |