patx/gitman

new logo

Commit 06132fb · patx · 2026-05-06T02:32:57-04:00

Changeset
06132fb2f64af244235966f4b4f589cb52f7793e
Parents
63fac68fb2d4b72384e64707fee88254745539ea

View source at this commit

Comments

No comments yet.

Log in to comment

Diff

diff --git a/static/git.svg b/static/git.svg
new file mode 100644
index 0000000..0979cdb
--- /dev/null
+++ b/static/git.svg
@@ -0,0 +1,3 @@
+<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-git" viewBox="0 0 16 16">
+  <path d="M15.698 7.287 8.712.302a1.03 1.03 0 0 0-1.457 0l-1.45 1.45 1.84 1.84a1.223 1.223 0 0 1 1.55 1.56l1.773 1.774a1.224 1.224 0 0 1 1.267 2.025 1.226 1.226 0 0 1-2.002-1.334L8.58 5.963v4.353a1.226 1.226 0 1 1-1.008-.036V5.887a1.226 1.226 0 0 1-.666-1.608L5.093 2.465l-4.79 4.79a1.03 1.03 0 0 0 0 1.457l6.986 6.986a1.03 1.03 0 0 0 1.457 0l6.953-6.953a1.03 1.03 0 0 0 0-1.457"/>
+</svg>
\ No newline at end of file
diff --git a/static/icon.png b/static/icon.png
deleted file mode 100644
index b1fbd73..0000000
Binary files a/static/icon.png and /dev/null differ
diff --git a/static/logo.png b/static/logo.png
deleted file mode 100644
index b1fbd73..0000000
Binary files a/static/logo.png and /dev/null differ
diff --git a/templates/base.tpl b/templates/base.tpl
index 788189d..100e005 100644
--- a/templates/base.tpl
+++ b/templates/base.tpl
@@ -4,16 +4,24 @@
   <meta charset="utf-8">
   <meta name="viewport" content="width=device-width, initial-scale=1">
   <title>{{title or "GitMan"}}</title>
-  <link rel="icon" type="image/png" sizes="32x32" href="/static/icon.png">
-<link rel="icon" type="image/png" sizes="16x16" href="/static/icon.png">
-<link rel="apple-touch-icon" sizes="180x180" href="/static/icon.png">
+  <link rel="icon" type="image/svg+xml" sizes="32x32" href="/static/git.svg">
+<link rel="icon" type="image/svg+xml" sizes="16x16" href="/static/git.svg">
+<link rel="apple-touch-icon" sizes="180x180" href="/static/git.svg">
   <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/github.min.css">
   <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/github-dark.min.css" media="(prefers-color-scheme: dark)">
   <link rel="stylesheet" href="/static/styles.css">
 </head>
 <body>
   <header class="site-header">
-    <a class="brand" href="/"><img src="/static/logo.png" style="max-height:36px;"></a>
+    <a class="brand" href="/">
+        <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-git" viewBox="0 0 16 16">
+          <path d="M15.698 7.287 8.712.302a1.03 1.03 0 0 0-1.457 0l-1.45 1.45 1.84 1.84a1.223 1.223 0 0 1 1.55 1.56l1.773 1.774a1.224 1.224 0 0 1 1.267 2.025 1.226 1.226 0 0 1-2.002-1.334L8.58 5.963v4.353a1.226 1.226 0 1 1-1.008-.036V5.887a1.226 1.226 0 0 1-.666-1.608L5.093 2.465l-4.79 4.79a1.03 1.03 0 0 0 0 1.457l6.986 6.986a1.03 1.03 0 0 0 1.457 0l6.953-6.953a1.03 1.03 0 0 0 0-1.457"/>
+        </svg>
+        <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-person-arms-up" viewBox="0 0 16 16">
+           <path d="M8 3a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3"/>
+           <path d="m5.93 6.704-.846 8.451a.768.768 0 0 0 1.523.203l.81-4.865a.59.59 0 0 1 1.165 0l.81 4.865a.768.768 0 0 0 1.523-.203l-.845-8.451A1.5 1.5 0 0 1 10.5 5.5L13 2.284a.796.796 0 0 0-1.239-.998L9.634 3.84a.7.7 0 0 1-.33.235c-.23.074-.665.176-1.304.176-.64 0-1.074-.102-1.305-.176a.7.7 0 0 1-.329-.235L4.239 1.286a.796.796 0 0 0-1.24.998l2.5 3.216c.317.316.475.758.43 1.204Z"/>
+        </svg>
+    </a>
     <nav class="nav">
       % if user:
         <a href="/{{user['username']}}">{{user['username']}}</a>