summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/head.html63
-rw-r--r--templates/index.html11
2 files changed, 40 insertions, 34 deletions
diff --git a/templates/head.html b/templates/head.html
index 08c572e..a4a02d2 100644
--- a/templates/head.html
+++ b/templates/head.html
@@ -1,33 +1,34 @@
{{ define "head" }}
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <link rel="stylesheet" href="/static/style.css" type="text/css">
- <link rel="stylesheet" href="https://cdn.icyphox.sh/fonts/inter.css" type="text/css">
- <link rel="icon" type="image/png" size="32x32" href="/static/legit.png">
- {{ if .parent }}
- <title>{{ .meta.Title }} &mdash; {{ .name }} ({{ .ref }}): {{ .parent }}/</title>
- {{ else if .path }}
- <title>{{ .meta.Title }} &mdash; {{ .name }} ({{ .ref }}): {{ .path }}</title>
- {{ else if .files }}
- <title>{{ .meta.Title }} &mdash; {{ .name }} ({{ .ref }})</title>
- {{ else if .commit }}
- <title>{{ .meta.Title }} &mdash; {{ .name }}: {{ .commit.This }}</title>
- {{ else if .branches }}
- <title>{{ .meta.Title }} &mdash; {{ .name }}: refs</title>
- {{ else if .commits }}
- {{ if .log }}
- <title>{{ .meta.Title }} &mdash; {{ .name }}: log</title>
- {{ else }}
- <title>{{ .meta.Title }} &mdash; {{ .name }}</title>
- {{ end }}
- {{ else }}
- <title>{{ .meta.Title }}</title>
- {{ end }}
- {{ if and .servername .gomod }}
- <meta name="go-import" content="{{ .servername}}/{{ .name }} git https://{{ .servername }}/{{ .name }}">
- {{ end }}
- <!-- other meta tags here -->
- </head>
-{{ end }}
+<head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <link rel="stylesheet" href="/static/style.css" type="text/css">
+ <link rel="stylesheet" href="https://cdn.icyphox.sh/fonts/inter.css" type="text/css">
+ <link rel="icon" type="image/png" size="32x32" href="/static/bunny.png">
+ {{ if .parent }}
+ <title>{{ .meta.Title }} &mdash; {{ .name }} ({{ .ref }}): {{ .parent }}/</title>
+
+ {{ else if .path }}
+ <title>{{ .meta.Title }} &mdash; {{ .name }} ({{ .ref }}): {{ .path }}</title>
+ {{ else if .files }}
+ <title>{{ .meta.Title }} &mdash; {{ .name }} ({{ .ref }})</title>
+ {{ else if .commit }}
+ <title>{{ .meta.Title }} &mdash; {{ .name }}: {{ .commit.This }}</title>
+ {{ else if .branches }}
+ <title>{{ .meta.Title }} &mdash; {{ .name }}: refs</title>
+ {{ else if .commits }}
+ {{ if .log }}
+ <title>{{ .meta.Title }} &mdash; {{ .name }}: log</title>
+ {{ else }}
+ <title>{{ .meta.Title }} &mdash; {{ .name }}</title>
+ {{ end }}
+ {{ else }}
+ <title>{{ .meta.Title }}</title>
+ {{ end }}
+ {{ if and .servername .gomod }}
+ <meta name="go-import" content="{{ .servername}}/{{ .name }} git https://{{ .servername }}/{{ .name }}">
+ {{ end }}
+ <!-- other meta tags here -->
+</head>
+{{ end }} \ No newline at end of file
diff --git a/templates/index.html b/templates/index.html
index a820dec..8347468 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -3,8 +3,13 @@
{{ template "head" . }}
<header>
- <h1>{{ .meta.Title }}</h1>
- <h2>{{ .meta.Description }}</h2>
+ <div>
+ <img src="/static/bunny.png">
+ </div>
+ <div>
+ <h1>{{ .meta.Title }}</h1>
+ <h2>{{ .meta.Description }}</h2>
+ </div>
</header>
<body>
@@ -23,4 +28,4 @@
</body>
</html>
-{{ end }} \ No newline at end of file
+{{ end }}