diff options
-rwxr-xr-x | dmt/dmt | 5 | ||||
-rw-r--r-- | dmt/favicon.png | bin | 0 -> 5172 bytes | |||
-rw-r--r-- | dmt/html/master.html | 1 |
3 files changed, 6 insertions, 0 deletions
@@ -123,4 +123,9 @@ case ${route[0]} in "script.js") template "script.js" text/javascript ;; + + "favicon.png") + printf 'Content-type: image/png\n\n' + cat "favicon.png" + ;; esac diff --git a/dmt/favicon.png b/dmt/favicon.png Binary files differnew file mode 100644 index 0000000..8db6f62 --- /dev/null +++ b/dmt/favicon.png diff --git a/dmt/html/master.html b/dmt/html/master.html index fd57476..dfeeef3 100644 --- a/dmt/html/master.html +++ b/dmt/html/master.html @@ -4,6 +4,7 @@ <head> <title>%{ echo -n "$CYCHE_SITE_NAME" | escape_html %}</title> <link rel="stylesheet" type="text/css" href="/style.css" /> + <link rel="icon" type="image/png" href="/favicon.png" /> </head> <body> |