diff options
| author | William Hergès <william@herges.fr> | 2025-10-27 14:42:36 +0100 |
|---|---|---|
| committer | William Hergès <william@herges.fr> | 2025-10-27 14:42:36 +0100 |
| commit | 9c2d960a3b7728b7857ad71ed656be4a02d58599 (patch) | |
| tree | 7fbb2bc0e8201aeae16e03dd7fb7ae48c317bb6d /backend/templates/home_section.html | |
| parent | 8d000018e132583bf4797ac9cb4ce2c4e96ed8ba (diff) | |
fix(backend): missing files
Diffstat (limited to 'backend/templates/home_section.html')
| -rw-r--r-- | backend/templates/home_section.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/backend/templates/home_section.html b/backend/templates/home_section.html new file mode 100644 index 0000000..cf7595d --- /dev/null +++ b/backend/templates/home_section.html @@ -0,0 +1,10 @@ +{{define "body"}} +<main id="content"> + {{ range .Sections }} + <div class="introduction"> + <h1>{{ .Name }}</h1> + <p>{{ .Description }}</p> + </div> + {{ template "section_display" . }} {{ end }} +</main> +{{end}} |
