Add favicon and a logo to the site

This commit is contained in:
Michal Vanko 2019-11-02 21:57:50 +01:00
parent 20d91c9ace
commit cdfbf942d2
5 changed files with 47 additions and 41 deletions

View File

@ -1,36 +1,36 @@
<!doctype html>
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width,initial-scale=1.0'>
<meta name='theme-color' content='#333333'>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<meta name="theme-color" content="#333333" />
%sapper.base%
%sapper.base%
<link rel='stylesheet' href='global.css'>
<link rel="stylesheet" href="print.css" media="print">
<link rel="stylesheet" href="fonts.css">
<!-- <link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,400i,600,600i&display=swap&subset=latin-ext" rel="stylesheet"> -->
<link rel='manifest' href='manifest.json'>
<link rel='icon' type='image/png' href='favicon.png'>
<link rel="stylesheet" href="global.css" />
<link rel="stylesheet" href="print.css" media="print" />
<link rel="stylesheet" href="fonts.css" />
<!-- <link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,400i,600,600i&display=swap&subset=latin-ext" rel="stylesheet"> -->
<link rel="manifest" href="manifest.json" />
<link rel="icon" type="image/png" href="m-favicon-192x192.png" />
<!-- Sapper generates a <style> tag containing critical CSS
<!-- Sapper generates a <style> tag containing critical CSS
for the current page. CSS for the rest of the app is
lazily loaded when it precaches secondary pages -->
%sapper.styles%
%sapper.styles%
<!-- This contains the contents of the <svelte:head> component, if
<!-- This contains the contents of the <svelte:head> component, if
the current page has one -->
%sapper.head%
</head>
<body>
<!-- The application will be rendered inside this element,
%sapper.head%
</head>
<body>
<!-- The application will be rendered inside this element,
because `app/client.js` references it -->
<div id='sapper'>%sapper.html%</div>
<div id="sapper">%sapper.html%</div>
<!-- Sapper creates a <script> tag containing `app/client.js`
<!-- Sapper creates a <script> tag containing `app/client.js`
and anything else it needs to hydrate the app and
initialise the router -->
%sapper.scripts%
</body>
%sapper.scripts%
</body>
</html>

BIN
static/images/m-logo.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
static/images/m-logo.xcf Normal file

Binary file not shown.

BIN
static/m-favicon-192x192.png (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -1,20 +1,20 @@
{
"background_color": "#ffffff",
"theme_color": "#333333",
"name": "TODO",
"short_name": "TODO",
"display": "minimal-ui",
"start_url": "/",
"icons": [
{
"src": "logo-192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "logo-512.png",
"sizes": "512x512",
"type": "image/png"
}
]
"background_color": "#ffffff",
"theme_color": "#212138",
"name": "michalvanko.dev",
"short_name": "m-dev",
"display": "minimal-ui",
"start_url": "/",
"icons": [
{
"src": "m-favicon-192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "images/m-logo.png",
"sizes": "226x226",
"type": "image/png"
}
]
}