From 984738d4f638278c0bb6e07d4169b328582d68f8 Mon Sep 17 00:00:00 2001 From: Florian Briand Date: Wed, 3 Jul 2024 17:56:17 +0200 Subject: [PATCH] chore: Move askama templates into src-frontend --- askama.toml | 2 ++ {templates => src-frontend/templates}/hello.html | 0 {templates => src-frontend/templates}/index.html | 0 3 files changed, 2 insertions(+) create mode 100644 askama.toml rename {templates => src-frontend/templates}/hello.html (100%) rename {templates => src-frontend/templates}/index.html (100%) diff --git a/askama.toml b/askama.toml new file mode 100644 index 0000000..602a72e --- /dev/null +++ b/askama.toml @@ -0,0 +1,2 @@ +[general] +dirs = ["src-frontend/templates"] diff --git a/templates/hello.html b/src-frontend/templates/hello.html similarity index 100% rename from templates/hello.html rename to src-frontend/templates/hello.html diff --git a/templates/index.html b/src-frontend/templates/index.html similarity index 100% rename from templates/index.html rename to src-frontend/templates/index.html