diff options
author | Runxi Yu <me@runxiyu.org> | 2025-02-10 17:06:22 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-02-10 17:06:22 +0800 |
commit | b6994407d3daa91f7beee8ea56e5ad13d22bc905 (patch) | |
tree | 981374e5b6985f3901e174ef94037d550104cb4a /templates/index.html | |
parent | base.html: Initialize for later use (diff) | |
download | forge-b6994407d3daa91f7beee8ea56e5ad13d22bc905.tar.gz forge-b6994407d3daa91f7beee8ea56e5ad13d22bc905.tar.zst forge-b6994407d3daa91f7beee8ea56e5ad13d22bc905.zip |
*.html: Reindent
Diffstat (limited to '')
-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 -}} |