mirror of
https://github.com/imfing/hextra.git
synced 2025-08-24 18:37:48 -04:00

* feat: add top banner * chore: use inside the example site * chore: generate * fix: banner with the burger navbar * fix: compute the banner height to allow mutliple lines * chore: better p style
14 lines
451 B
HTML
14 lines
451 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ .Site.Language.Lang }}">
|
|
{{- partial "head.html" . -}}
|
|
<body dir="{{ .Site.Language.LanguageDirection | default `ltr` }}">
|
|
{{- partial "banner.html" . -}}
|
|
{{- partial "navbar.html" . -}}
|
|
{{- block "main" . }}{{ end -}}
|
|
{{- if or (eq .Site.Params.footer.enable nil) (.Site.Params.footer.enable) }}
|
|
{{ partial "footer.html" . }}
|
|
{{ end }}
|
|
{{ partial "scripts.html" . }}
|
|
</body>
|
|
</html>
|