aboutsummaryrefslogtreecommitdiff
path: root/templates/index.html
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--templates/index.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/templates/index.html b/templates/index.html
new file mode 100644
index 0000000..219ae09
--- /dev/null
+++ b/templates/index.html
@@ -0,0 +1,20 @@
+{{- define "index" -}}
+<!DOCTYPE html>
+<html>
+<head>
+<link rel="stylesheet" href="/static/style.css" />
+<title>Forge</title>
+</head>
+<body class="index">
+<div class="padding-wrapper">
+<ul>
+{{- range .categories }}
+<li>
+<a href="{{ . }}/">{{ . }}</a>
+</li>
+{{- end }}
+</ul>
+</div>
+</body>
+</html>
+{{- end -}}