aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--templates/repo_tree_dir.html40
1 files changed, 40 insertions, 0 deletions
diff --git a/templates/repo_tree_dir.html b/templates/repo_tree_dir.html
new file mode 100644
index 0000000..6708f0c
--- /dev/null
+++ b/templates/repo_tree_dir.html
@@ -0,0 +1,40 @@
+{{- define "repo_tree_dir" -}}
+<!DOCTYPE html>
+<html>
+<head>
+<link rel="stylesheet" href="/static/style.css" />
+<title>{{ .project_name }}/repos/{{ .repo_name }}/{{ .path }}</title>
+</head>
+<body class="repo-index">
+<div class="padding-wrapper">
+<table id="file-tree">
+<thead>
+<tr>
+<th scope="col">Mode</th>
+<th scope="col">Name</th>
+<th scope="col">Size</th>
+</tr>
+</thead>
+<tbody>
+{{- range .files }}
+<tr>
+<td class="file-mode">{{ .Mode }}</td>
+<td class="file-name">{{ .Name }}</td>
+<td class="file-size">{{ .Size }}</td>
+</tr>
+{{- end }}
+</tbody>
+</table>
+</div>
+<div class="padding-wrapper">
+<div id="refs">
+</div>
+</div>
+<div class="padding-wrapper">
+<div id="readme">
+{{ .readme -}}
+</div>
+</div>
+</body>
+</html>
+{{- end -}}