This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

add favicon

nagee (Jun 7, 2026, 10:34 AM -0700) 08640c9d 1534bf0d

+16 -6
-2
main.go
··· 55 55 uuidToolHandler.Index(w, r) 56 56 } 57 57 }) 58 - mux.HandleFunc("/favicon.ico", func(w http.ResponseWriter, r *http.Request) {}) // no favicon 59 - 60 58 // Wrap with logging middleware 61 59 logged := loggingMiddleware(mux, logger) 62 60
+7 -2
src/ui/templates/page.templ
··· 8 8 <head> 9 9 <meta charset="UTF-8"/> 10 10 <meta name="viewport" content="width=device-width, initial-scale=1.0"/> 11 + <link rel="icon" href="/static/favicon.ico"> 12 + <link rel="apple-touch-icon" sizes="180x180" href="/static/apple-touch-icon.png"> 13 + <link rel="icon" type="image/png" sizes="32x32" href="/static/favicon-32x32.png"> 14 + <link rel="icon" type="image/png" sizes="16x16" href="/static/favicon-16x16.png"> 15 + <link rel="manifest" href="/static/site.webmanifest"> 11 16 <title>{ title }</title> 12 17 @ui.GlobalCss() 13 18 </head> 14 19 <body> 15 20 <header><h1>Toolbox</h1></header> 16 21 <nav data-style="blockout"> 17 - <a class="nav-item" href="/">home</a> 18 - <a class="nav-item" href="/uuid">uuid-fmt</a> 22 + <a class="nav-item" href="/">home</a> 23 + <a class="nav-item" href="/uuid">uuid-fmt</a> 19 24 </nav> 20 25 <main> 21 26 { children... }
+2 -2
src/ui/templates/page_templ.go
··· 31 31 templ_7745c5c3_Var1 = templ.NopComponent 32 32 } 33 33 ctx = templ.ClearChildren(ctx) 34 - templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 1, "<!doctype html><html lang=\"en\" data-font-family=\"sans-serif\"><head><meta charset=\"UTF-8\"><meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"><title>") 34 + templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 1, "<!doctype html><html lang=\"en\" data-font-family=\"sans-serif\"><head><meta charset=\"UTF-8\"><meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"><link rel=\"icon\" href=\"/static/favicon.ico\"><link rel=\"apple-touch-icon\" sizes=\"180x180\" href=\"/static/apple-touch-icon.png\"><link rel=\"icon\" type=\"image/png\" sizes=\"32x32\" href=\"/static/favicon-32x32.png\"><link rel=\"icon\" type=\"image/png\" sizes=\"16x16\" href=\"/static/favicon-16x16.png\"><link rel=\"manifest\" href=\"/static/site.webmanifest\"><title>") 35 35 if templ_7745c5c3_Err != nil { 36 36 return templ_7745c5c3_Err 37 37 } 38 38 var templ_7745c5c3_Var2 string 39 39 templ_7745c5c3_Var2, templ_7745c5c3_Err = templ.JoinStringErrs(title) 40 40 if templ_7745c5c3_Err != nil { 41 - return templ.Error{Err: templ_7745c5c3_Err, FileName: `src/ui/templates/page.templ`, Line: 11, Col: 17} 41 + return templ.Error{Err: templ_7745c5c3_Err, FileName: `src/ui/templates/page.templ`, Line: 16, Col: 17} 42 42 } 43 43 _, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var2)) 44 44 if templ_7745c5c3_Err != nil {
+6
static/about.txt
··· 1 + This favicon was generated using the following graphics from Twitter Twemoji: 2 + 3 + - Graphics Title: 1f643.svg 4 + - Graphics Author: Copyright 2020 Twitter, Inc and other contributors (https://github.com/twitter/twemoji) 5 + - Graphics Source: https://github.com/twitter/twemoji/blob/v14.0.2/assets/svg/1f643.svg 6 + - Graphics License: CC-BY 4.0 (https://creativecommons.org/licenses/by/4.0/)
static/android-chrome-192x192.png

This is a binary file and will not be displayed.

static/android-chrome-512x512.png

This is a binary file and will not be displayed.

static/apple-touch-icon.png

This is a binary file and will not be displayed.

static/favicon-16x16.png

This is a binary file and will not be displayed.

static/favicon-32x32.png

This is a binary file and will not be displayed.

static/favicon.ico

This is a binary file and will not be displayed.

+1
static/site.webmanifest
··· 1 + {"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}