web frontend for git (tangled's grandpa)

css: revert to default system font

Also removes my CDN from head.html along with the relevant note in the
readme.

+3 -6
-1
config.yaml
··· 14 14 meta: 15 15 title: icy does git 16 16 description: come get your free software 17 - syntaxHighlight: monokailight 18 17 server: 19 18 name: git.icyphox.sh 20 19 host: 0.0.0.0
+1 -2
readme
··· 48 48 meta: 49 49 title: git good 50 50 description: i think it's a skill issue 51 + syntaxHighlight: monokailight 51 52 server: 52 53 name: git.icyphox.sh 53 54 host: 127.0.0.1 ··· 74 75 • Run legit behind a TLS terminating proxy like relayd(8) or nginx. 75 76 • Cloning only works in bare repos -- this is a limitation inherent to git. You 76 77 can still view non-bare repos just fine in legit. 77 - • The default head.html template uses my CDN to fetch fonts -- you may 78 - or may not want this. 79 78 • Pushing over https, while supported, is disabled because auth is a 80 79 pain. Use ssh. 81 80 • Paths are unveil(2)'d on OpenBSD.
+2 -2
static/style.css
··· 8 8 --dark: #444; 9 9 --darker: #222; 10 10 11 - --sans-font: "Geist", -apple-system, BlinkMacSystemFont, "Roboto", "Segoe UI", sans-serif; 12 - --display-font: "Geist", -apple-system, BlinkMacSystemFont, "Roboto", "Segoe UI", sans-serif; 11 + --sans-font: -apple-system, BlinkMacSystemFont, "Inter", "Roboto", "Segoe UI", sans-serif; 12 + --display-font: -apple-system, BlinkMacSystemFont, "Inter", "Roboto", "Segoe UI", sans-serif; 13 13 --mono-font: 'SF Mono', SFMono-Regular, ui-monospace, 'DejaVu Sans Mono', 'Roboto Mono', Menlo, Consolas, monospace; 14 14 } 15 15
-1
templates/head.html
··· 3 3 <meta charset="utf-8"> 4 4 <meta name="viewport" content="width=device-width, initial-scale=1"> 5 5 <link rel="stylesheet" href="/static/style.css" type="text/css"> 6 - <link rel="stylesheet" href="https://cdn.icyphox.sh/fonts/fonts.css" type="text/css"> 7 6 <link rel="icon" type="image/png" size="32x32" href="/static/legit.png"> 8 7 {{ if .parent }} 9 8 <title>{{ .meta.Title }} &mdash; {{ .name }} ({{ .ref }}): {{ .parent }}/</title>