summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--config.yaml6
-rw-r--r--static/bunny.pngbin0 -> 518937 bytes
-rw-r--r--static/style.css17
-rw-r--r--templates/head.html63
-rw-r--r--templates/index.html11
5 files changed, 57 insertions, 40 deletions
diff --git a/config.yaml b/config.yaml
index dc7f9e7..f447dd4 100644
--- a/config.yaml
+++ b/config.yaml
@@ -12,9 +12,9 @@ dirs:
templates: ./templates
static: ./static
meta:
- title: git good
- description: i think it's a skill issue
+ title: the bunny garden
+ description: git repos!!!
server:
- name: git.icyphox.sh
+ name: bunny.garden
host: 127.0.0.1
port: 5555
diff --git a/static/bunny.png b/static/bunny.png
new file mode 100644
index 0000000..296c803
--- /dev/null
+++ b/static/bunny.png
Binary files differ
diff --git a/static/style.css b/static/style.css
index ce66ba6..64487d6 100644
--- a/static/style.css
+++ b/static/style.css
@@ -7,9 +7,20 @@
--dark: #f3d0aa;
--darker: #f3d0aa;
- --sans-font: "InterVar", -apple-system, BlinkMacSystemFont, "Roboto", "Segoe UI", sans-serif;
- --display-font: "InterDisplay", -apple-system, BlinkMacSystemFont, "Roboto", "Segoe UI", sans-serif;
- --mono-font: 'SF Mono', SFMono-Regular, ui-monospace, 'DejaVu Sans Mono', 'Roboto Mono', Menlo, Consolas, monospace;
+ --sans-font: "Darumadrop One", -apple-system, BlinkMacSystemFont, "Roboto", "Segoe UI", sans-serif;
+ --display-font: "Darumadrop One", -apple-system, BlinkMacSystemFont, "Roboto", "Segoe UI", sans-serif;
+ --mono-font: 'Victor Mono', 'VictorMono Nerd Font', SFMono-Regular, ui-monospace, 'DejaVu Sans Mono', 'Roboto Mono', Menlo, Consolas, monospace;
+}
+
+header {
+ display: flex;
+ gap: 2em;
+ flex-wrap: wrap;
+}
+
+header img {
+ max-width: 128px;
+ max-height: 128px;
}
html {
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 }}