Initial boilerplate, favicons and package
BIN
src/img/favicon/android-chrome-192x192.png
Normal file
After Width: | Height: | Size: 6.7 KiB |
BIN
src/img/favicon/android-chrome-512x512.png
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
src/img/favicon/apple-touch-icon.png
Normal file
After Width: | Height: | Size: 2.6 KiB |
9
src/img/favicon/browserconfig.xml
Normal file
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<browserconfig>
|
||||
<msapplication>
|
||||
<tile>
|
||||
<square150x150logo src="/img/favicon/mstile-150x150.png"/>
|
||||
<TileColor>#da532c</TileColor>
|
||||
</tile>
|
||||
</msapplication>
|
||||
</browserconfig>
|
BIN
src/img/favicon/favicon-16x16.png
Normal file
After Width: | Height: | Size: 609 B |
BIN
src/img/favicon/favicon-32x32.png
Normal file
After Width: | Height: | Size: 981 B |
BIN
src/img/favicon/favicon.ico
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
src/img/favicon/mstile-150x150.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
1
src/img/favicon/safari-pinned-tab.svg
Normal file
After Width: | Height: | Size: 13 KiB |
19
src/img/favicon/site.webmanifest
Normal file
@ -0,0 +1,19 @@
|
||||
{
|
||||
"name": "Schulze Studio",
|
||||
"short_name": "Schulze.Studio",
|
||||
"icons": [
|
||||
{
|
||||
"src": "/img/favicon/android-chrome-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "/img/favicon/android-chrome-512x512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png"
|
||||
}
|
||||
],
|
||||
"theme_color": "#ffffff",
|
||||
"background_color": "#ffffff",
|
||||
"display": "standalone"
|
||||
}
|
BIN
src/img/logo/logo@0.10x.png
Normal file
After Width: | Height: | Size: 98 KiB |
BIN
src/img/logo/logo@0.25x.png
Normal file
After Width: | Height: | Size: 658 KiB |
BIN
src/img/logo/logo@0.30x.png
Normal file
After Width: | Height: | Size: 1.0 MiB |
BIN
src/img/logo/logo@0.50x.png
Normal file
After Width: | Height: | Size: 3.0 MiB |
BIN
src/img/logo/logo@0.75x.png
Normal file
After Width: | Height: | Size: 9.3 MiB |
BIN
src/img/logo/logo@1.00.png
Normal file
After Width: | Height: | Size: 15 MiB |
50
src/index.html
Normal file
@ -0,0 +1,50 @@
|
||||
<!doctype html>
|
||||
<html lang="sv-SE">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Felix Schulze</title>
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
|
||||
<meta http-equiv="content-language" content="sv-SE">
|
||||
<meta name="description" content="">
|
||||
<meta name="keywords" content="">
|
||||
<meta name="author" content="Felix Schulze">
|
||||
<meta HTTP-EQUIV="CACHE-CONTROL" CONTENT="public">
|
||||
<link rel="canonical" href="https://schulze.studio">
|
||||
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="">
|
||||
<meta property="og:title" content="">
|
||||
<meta property="og:url" content="https://schulze.studio">
|
||||
<meta property="og:description" content="">
|
||||
<meta name="title" content="">
|
||||
|
||||
<link rel="stylesheet" async href="/css/main.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
|
||||
<![endif]-->
|
||||
<!--
|
||||
XXXXXXX
|
||||
FAVICON
|
||||
XXXXXXX
|
||||
-->
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/img/favicon/apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/img/favicon/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="/img/favicon/favicon-16x16.png">
|
||||
<link rel="manifest" href="/img/favicon/site.webmanifest">
|
||||
<link rel="mask-icon" href="/img/favicon/safari-pinned-tab.svg" color="#5bbad5">
|
||||
<link rel="shortcut icon" href="/img/favicon/favicon.ico">
|
||||
<meta name="msapplication-TileColor" content="#da532c">
|
||||
<meta name="msapplication-config" content="/img/favicon/browserconfig.xml">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
</body>
|
||||
</html>
|
8
src/robots.txt
Normal file
@ -0,0 +1,8 @@
|
||||
User-agent: *
|
||||
Disallow: /assets/
|
||||
Disallow: /img/
|
||||
Disallow: /css/
|
||||
Disallow: /js/
|
||||
Disallow: /include/
|
||||
Disallow: /404.html
|
||||
Disallow: /50x.html
|