From c8e1328164e9ffbd681c3c0e449f1e6b9856b896 Mon Sep 17 00:00:00 2001 From: Gabriel Arakaki Giovanini Date: Sun, 26 Feb 2023 19:54:48 +0100 Subject: feat: Inicial commit It contains rough template for the server and runners. It contains rough template for the server and runners. --- templates/fs.html | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 templates/fs.html (limited to 'templates/fs.html') diff --git a/templates/fs.html b/templates/fs.html new file mode 100644 index 0000000..608289d --- /dev/null +++ b/templates/fs.html @@ -0,0 +1,29 @@ +{{template "layout.html" .}} +{{define "title"}} {{.Title}} {{end}} +{{define "content"}} +
+
+
+
+ {{range .Data.Page.History}}{{.Name}}/{{end}} +
+
+
+ {{range .Data.Page.Files}} +
+
+
+ {{if $.Data.ShowMode}}{{.Info.Mode}} {{end}} + {{if $.Data.ShowOwner}}{{.Info.Sys.Gid}}:{{.Info.Sys.Uid}} {{end}} + {{if .Info.IsDir}} + {{.Info.Name}}/ + {{else}} + {{.Info.Name}} + {{end}} +
+
{{.Info.Size}} B
+
+
+ {{end}} +
+{{end}} -- cgit v1.2.3