32 lines
No EOL
916 B
HTML
32 lines
No EOL
916 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>
|
|
{{ if (fileExists (printf "assets/%s" .image )) -}}
|
|
{{ $mainimage := resources.Get .image }}
|
|
<img alt="{{ .title }}" class="img-thumbnail img-fluid" src="{{ $mainimage.RelPermalink }}" >
|
|
{{ end }}
|
|
|
|
<h4>{{ .title }}</h4>
|
|
</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> |