Add favicon stuff
BIN
android-chrome-192x192.png
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
android-chrome-512x512.png
Normal file
After Width: | Height: | Size: 31 KiB |
BIN
apple-touch-icon.png
Normal file
After Width: | Height: | Size: 23 KiB |
9
browserconfig.xml
Normal file
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<browserconfig>
|
||||
<msapplication>
|
||||
<tile>
|
||||
<square150x150logo src="/mstile-150x150.png?v=2"/>
|
||||
<TileColor>#da532c</TileColor>
|
||||
</tile>
|
||||
</msapplication>
|
||||
</browserconfig>
|
BIN
favicon-16x16.png
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
favicon-32x32.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
favicon.ico
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 15 KiB |
17
index.html
@ -17,6 +17,20 @@
|
||||
|
||||
<script src="js/modernizer.js"></script>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
|
||||
|
||||
|
||||
<!-- Massive amount of favicon related stuff -->
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png?v=2">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png?v=2">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png?v=2">
|
||||
<link rel="manifest" href="/site.webmanifest?v=2">
|
||||
<link rel="mask-icon" href="/safari-pinned-tab.svg?v=2" color="#5bbad5">
|
||||
<link rel="shortcut icon" href="/favicon.ico?v=2">
|
||||
<meta name="apple-mobile-web-app-title" content="FOSC">
|
||||
<meta name="application-name" content="FOSC">
|
||||
<meta name="msapplication-TileColor" content="#da532c">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
@ -69,7 +83,8 @@
|
||||
<a href="https://git.fosc.space"><span class="iconify" data-icon="mdi:git"></span> Stolen Code</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://services.fosc.space"><span class="iconify" data-icon="mdi:bookmark-plus"></span> More</a>
|
||||
<a href="https://services.fosc.space"><span class="iconify" data-icon="mdi:bookmark-plus"></span>
|
||||
More</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
|
BIN
mstile-150x150.png
Normal file
After Width: | Height: | Size: 6.6 KiB |
1
safari-pinned-tab.svg
Normal file
After Width: | Height: | Size: 9.6 KiB |
19
site.webmanifest
Normal file
@ -0,0 +1,19 @@
|
||||
{
|
||||
"name": "FOSC",
|
||||
"short_name": "FOSC",
|
||||
"icons": [
|
||||
{
|
||||
"src": "/android-chrome-192x192.png?v=2",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "/android-chrome-512x512.png?v=2",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png"
|
||||
}
|
||||
],
|
||||
"theme_color": "#ffffff",
|
||||
"background_color": "#ffffff",
|
||||
"display": "standalone"
|
||||
}
|