Initial commit: Add telonma homepage

This commit is contained in:
2024-12-19 13:52:17 +01:00
commit eabd1921ab
222 changed files with 27012 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
<!DOCTYPE HTML>
<html lang="{{ .Language }}">
<head>
{{- partial "head/head.html" . -}}
{{- template "_internal/opengraph.html" . -}}
</head>
<body class="is-preload">
{{- partial "analytics/google-tag-manager/body.html" . }}
<div id="page-wrapper">
{{- partial "header.html" . }}
<!-- Lookup homepage data in language data directory (e.g. data/en/homepage.yml).
Defaults to data/homepage.yml if language specific data was not found. -->
{{ with index ( index .Site.Data .Site.Language.Lang | default .Site.Data ) (.Param "homepage_data" | default "homepage") }}
{{- if .banner.enable }}
{{- partial "homepage/banner.html" .banner -}}
{{- end }}
{{- range .items }}
{{- partial (printf "homepage/blocks/%s.html" .type) (dict "ctx" $ "item" .) }}
{{- end }}
{{ end }}
{{- partial "footer/footer.html" . -}}
</div>
{{- partial "scripts.html" . -}}
</body>
</html>