diff options
Diffstat (limited to '')
-rw-r--r-- | templates/category_index.html | 5 | ||||
-rw-r--r-- | templates/index.html | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/templates/category_index.html b/templates/category_index.html index 1ae0c64..76f55e1 100644 --- a/templates/category_index.html +++ b/templates/category_index.html @@ -5,8 +5,11 @@ <link rel="stylesheet" href="/static/style.css" /> <title>{{ .category_name }}</title> </head> -<body class="index"> +<body class="category-index"> <div class="padding-wrapper"> +<h1> +Repos in {{ .category_name }} +</h1> <ul> {{- range .repos }} <li> diff --git a/templates/index.html b/templates/index.html index 219ae09..f7d64b3 100644 --- a/templates/index.html +++ b/templates/index.html @@ -7,6 +7,9 @@ </head> <body class="index"> <div class="padding-wrapper"> +<h1> +Categories +</h1> <ul> {{- range .categories }} <li> |