diff options
Diffstat (limited to 'templates/index.html')
-rw-r--r-- | templates/index.html | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/templates/index.html b/templates/index.html index f7d64b3..be02d7c 100644 --- a/templates/index.html +++ b/templates/index.html @@ -1,23 +1,23 @@ {{- define "index" -}} <!DOCTYPE html> <html> -<head> -<link rel="stylesheet" href="/static/style.css" /> -<title>Forge</title> -</head> -<body class="index"> -<div class="padding-wrapper"> -<h1> -Categories -</h1> -<ul> -{{- range .categories }} -<li> -<a href="{{ . }}/">{{ . }}</a> -</li> -{{- end }} -</ul> -</div> -</body> + <head> + <link rel="stylesheet" href="/static/style.css" /> + <title>Forge</title> + </head> + <body class="index"> + <div class="padding-wrapper"> + <h1> + Categories + </h1> + <ul> + {{- range .categories }} + <li> + <a href="{{ . }}/">{{ . }}</a> + </li> + {{- end }} + </ul> + </div> + </body> </html> {{- end -}} |