This is the main dovel repository, it has the Go code to run dovel SMTP server.
Author: blmayer (bleemayer@gmail.com)
Date: Mon Mar 20 20:14:07 2023 -0300
Parent: 648b63c
Added favicon
commit e6800836594709f8dc896d27ecfc21901bca654f Author: blmayer <bleemayer@gmail.com> Date: Mon Mar 20 20:14:07 2023 -0300 Added favicon diff --git a/www/favicon.ico b/www/favicon.ico new file mode 100644 index 0000000..2e1f8df Binary files /dev/null and b/www/favicon.ico differ
commit e6800836594709f8dc896d27ecfc21901bca654f Author: blmayer <bleemayer@gmail.com> Date: Mon Mar 20 20:14:07 2023 -0300 Added favicon diff --git a/www/head.html b/www/head.html index 4a41b9c..d041738 100644 --- a/www/head.html +++ b/www/head.html @@ -1,4 +1,4 @@ <title>dovel</title> -<link rel=icon href=data:;,> +<link rel=icon href=/favicon.ico> <meta name="viewport" content="width=device-width, initial-scale=1"/> {{template "style-min.html"}}
commit e6800836594709f8dc896d27ecfc21901bca654f Author: blmayer <bleemayer@gmail.com> Date: Mon Mar 20 20:14:07 2023 -0300 Added favicon diff --git a/www/icon.png b/www/icon.png new file mode 100644 index 0000000..de112e2 Binary files /dev/null and b/www/icon.png differ
commit e6800836594709f8dc896d27ecfc21901bca654f Author: blmayer <bleemayer@gmail.com> Date: Mon Mar 20 20:14:07 2023 -0300 Added favicon diff --git a/www/index.html b/www/index.html index daa0264..8f8faf3 100644 --- a/www/index.html +++ b/www/index.html @@ -1,4 +1,8 @@ -{{template "head.html"}} +<head> + {{template "head.html"}} + <link rel="manifest" href="/manifest.json"> +</head> +<body> <b>inboxes!</b><br> <br> @@ -11,3 +15,4 @@ Updated: {{.LastMod.Format "Mon, 02 Jan 2006 15:04:05 MST"}}<br> <br> {{end}} +</body>
commit e6800836594709f8dc896d27ecfc21901bca654f Author: blmayer <bleemayer@gmail.com> Date: Mon Mar 20 20:14:07 2023 -0300 Added favicon diff --git a/www/manifest.json b/www/manifest.json new file mode 100644 index 0000000..f81bda4 --- /dev/null +++ b/www/manifest.json @@ -0,0 +1,15 @@ +{ + "short_name": "dovel", + "name": "Dovel", + "icons": [ + { + "src": "/icon.png", + "type": "image/png", + "sizes": "200x200" + } + ], + "start_url": "index.html", + "display": "standalone", + "theme_color": "white", + "background_color": "white" +}