favicon
BIN
webassets/bunny.xcf
Normal file
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 34 KiB |
BIN
webassets/icons/android-icon-144x144.png
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
webassets/icons/android-icon-192x192.png
Normal file
After Width: | Height: | Size: 30 KiB |
BIN
webassets/icons/android-icon-36x36.png
Normal file
After Width: | Height: | Size: 4.2 KiB |
BIN
webassets/icons/android-icon-48x48.png
Normal file
After Width: | Height: | Size: 5.7 KiB |
BIN
webassets/icons/android-icon-72x72.png
Normal file
After Width: | Height: | Size: 9.2 KiB |
BIN
webassets/icons/android-icon-96x96.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
webassets/icons/apple-icon-114x114.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
webassets/icons/apple-icon-120x120.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
webassets/icons/apple-icon-144x144.png
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
webassets/icons/apple-icon-152x152.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
webassets/icons/apple-icon-180x180.png
Normal file
After Width: | Height: | Size: 30 KiB |
BIN
webassets/icons/apple-icon-57x57.png
Normal file
After Width: | Height: | Size: 6.9 KiB |
BIN
webassets/icons/apple-icon-60x60.png
Normal file
After Width: | Height: | Size: 7.3 KiB |
BIN
webassets/icons/apple-icon-72x72.png
Normal file
After Width: | Height: | Size: 9.2 KiB |
BIN
webassets/icons/apple-icon-76x76.png
Normal file
After Width: | Height: | Size: 9.9 KiB |
BIN
webassets/icons/apple-icon-precomposed.png
Normal file
After Width: | Height: | Size: 31 KiB |
BIN
webassets/icons/apple-icon.png
Normal file
After Width: | Height: | Size: 31 KiB |
2
webassets/icons/browserconfig.xml
Normal file
@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<browserconfig><msapplication><tile><square70x70logo src="/ms-icon-70x70.png"/><square150x150logo src="/ms-icon-150x150.png"/><square310x310logo src="/ms-icon-310x310.png"/><TileColor>#ffffff</TileColor></tile></msapplication></browserconfig>
|
BIN
webassets/icons/favicon-16x16.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
webassets/icons/favicon-32x32.png
Normal file
After Width: | Height: | Size: 3.7 KiB |
BIN
webassets/icons/favicon-96x96.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
webassets/icons/ms-icon-144x144.png
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
webassets/icons/ms-icon-150x150.png
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
webassets/icons/ms-icon-310x310.png
Normal file
After Width: | Height: | Size: 66 KiB |
BIN
webassets/icons/ms-icon-70x70.png
Normal file
After Width: | Height: | Size: 8.9 KiB |
@ -6,6 +6,21 @@
|
||||
<title>LocalhostBunny</title>
|
||||
|
||||
<link rel="shortcut icon" href="/favicon.ico" />
|
||||
|
||||
<link rel="apple-touch-icon" sizes="57x57" href="/icons/apple-icon-57x57.png">
|
||||
<link rel="apple-touch-icon" sizes="60x60" href="/icons/apple-icon-60x60.png">
|
||||
<link rel="apple-touch-icon" sizes="72x72" href="/icons/apple-icon-72x72.png">
|
||||
<link rel="apple-touch-icon" sizes="76x76" href="/icons/apple-icon-76x76.png">
|
||||
<link rel="apple-touch-icon" sizes="114x114" href="/icons/apple-icon-114x114.png">
|
||||
<link rel="apple-touch-icon" sizes="120x120" href="/icons/apple-icon-120x120.png">
|
||||
<link rel="apple-touch-icon" sizes="144x144" href="/icons/apple-icon-144x144.png">
|
||||
<link rel="apple-touch-icon" sizes="152x152" href="/icons/apple-icon-152x152.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/icons/apple-icon-180x180.png">
|
||||
<link rel="icon" type="image/png" sizes="192x192" href="/icons/android-icon-192x192.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/icons/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="96x96" href="/icons/favicon-96x96.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="/icons/favicon-16x16.png">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/css/reset.css" />
|
||||
<link rel="stylesheet" type="text/css" href="/css/fonts.css" />
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.css" />
|
||||
|
@ -19,6 +19,7 @@ import (
|
||||
//go:embed fonts/*.woff
|
||||
//go:embed fonts/*.woff2
|
||||
//go:embed icons/*.svg
|
||||
//go:embed icons/*.png
|
||||
var _assets embed.FS
|
||||
|
||||
type templateCacheEntry struct {
|
||||
|