commit d2ab7f3a46b1e54c2492ebfcf138d2edec846f0d
parent 1f0a78b1218e963c725f071324157757b00b0c37
Author: Dan Callaghan <djc@djc.id.au>
Date: Sun, 12 Oct 2025 14:01:09 +1100
suppress favicon requests
We never had any icon for Sup so there is nothing to put here. This
technique just avoids the browser fetching a multi-kilobyte 404 page
for favicon.ico on every page view.
https://stackoverflow.com/a/13416784/120202
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/_layouts/default.md b/_layouts/default.md
@@ -6,6 +6,7 @@
<meta charset='utf-8'>
<link rel="stylesheet" type="text/css" href="/stylesheets/stylesheet.css" media="screen" />
<link rel="stylesheet" type="text/css" href="/stylesheets/pygment_trac.css" media="screen" />
+ <link rel="icon" href="data:image/png;base64,iVBORw0KGgo=" />
<title>sup</title>
<meta name="viewport" content="width=device-width" />
</head>