legit/templates/repo.html
Anirudh Oppiliappan 856f66808b
all: init
2022-12-11 11:22:47 +05:30

22 lines
412 B
HTML

{{ define "repo" }}
<html>
{{ template "head" . }}
<header>
<h1>{{ .meta.Title }}</h1>
<h2>{{ .meta.Description }}</h2>
</header>
<body>
{{ template "nav" . }}
<main>
{{ range .files }}
{{ if .IsFile }}
<p>{{ .Mode }} {{ .Name }} {{ .Size }} </p>
{{ else }}
<p>d-------- {{ .Name}}/</p>
{{ end }}
{{ end }}
</main>
</body>
</html>
{{ end }}