From f2c55bd724b0ea5f920945363c58797714883d5e Mon Sep 17 00:00:00 2001 From: RainbowYoshi Date: Sat, 31 Jan 2026 21:54:31 +0000 Subject: [PATCH] =?UTF-8?q?T=C3=A9l=C3=A9verser=20les=20fichiers=20vers=20?= =?UTF-8?q?"web/templates"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/templates/repo_list.html | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 web/templates/repo_list.html diff --git a/web/templates/repo_list.html b/web/templates/repo_list.html new file mode 100644 index 0000000..7d1642e --- /dev/null +++ b/web/templates/repo_list.html @@ -0,0 +1,34 @@ +{{define "repo_list"}} +
+ {{range .Config.Repositories}} +
+
+
+

{{.Name}}

+
+ {{if .Description}} +
+ {{.Description}} +
+ {{end}} +
+
+ {{.Language}} +
+
{{.UpdatedAt}}
+
+
+
+ {{end}} + + {{if not .Config.Repositories}} +
+

No repositories found

+

Configure repo_path in your config or ensure you have git + folders in the current directory.

+
+ {{end}} +
+{{end}} \ No newline at end of file