speedtech-website/themes/lean/layouts/index.html

29 lines
749 B
HTML
Raw Normal View History

2024-10-04 11:58:15 +02:00
<!DOCTYPE html>
<html lang="{{ .Site.Language.Lang }}">
{{ partial "head.html" . }}
2025-05-14 18:03:13 +02:00
<body hx-boost="true" lang="{{ .Site.Language.Lang }}">
2024-10-04 11:58:15 +02:00
{{ partial "nav.html" . }}
2025-05-11 20:54:29 +02:00
<div id="page-content">
{{ with (index .Site.Data.introduction .Site.Language.Lang).home }}
<div id="home-introduction" class="container">
<div class="row">
<div class="col m12 l12">
{{ .description | markdownify}}
2024-10-04 11:58:15 +02:00
</div>
</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" . }}
2025-05-11 20:54:29 +02:00
</div>
2024-10-04 11:58:15 +02:00
{{ partial "footer.html" . }}
</body>
</html>