Skip to content

Commit 708f443

Browse files
authored
Merge pull request #1 from kowalski7cc/master
Add favicons and webmanifest
2 parents a200f53 + e96ac25 commit 708f443

File tree

5 files changed

+33
-2
lines changed

5 files changed

+33
-2
lines changed
3.58 KB
Loading

static/images/favicon/icon.png

31.1 KB
Loading
34.7 KB
Loading

static/manifest.webmanifest

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"theme_color": "#ffffff",
3+
"background_color": "#ffffff",
4+
"orientation": "any",
5+
"display": "browser",
6+
"dir": "auto",
7+
"lang": "it-IT",
8+
"name": "End Summer Camp",
9+
"short_name": "ESC",
10+
"description": "ESC è un incontro non-profit di persone interessate all’Hacking, al Software Libero e al DIY.",
11+
"start_url": "/",
12+
"id": "/",
13+
"icons": [
14+
{
15+
"purpose": "any",
16+
"sizes": "512x512",
17+
"src": "/images/favicon/icon.png",
18+
"type": "image/png"
19+
},
20+
{
21+
"purpose": "maskable",
22+
"sizes": "512x512",
23+
"src": "/images/favicon/maskable_icon.png",
24+
"type": "image/png"
25+
}
26+
]
27+
}

templates/base.html

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,15 @@
22
<html lang="en">
33

44
<head>
5-
<meta charset="utf-8">
5+
<meta charset="UTF-8">
66
<meta name="viewport" content="width=device-width, initial-scale=1.0">
77
<title>End Summer Camp &#8211; Hacking * Free Software * DIY</title>
88
<link rel="stylesheet" href="main.css">
9-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
9+
<link rel="manifest" href="manifest.webmanifest">
10+
<link rel="icon" type="image/png" href="/images/favicon/favicon_64.png" sizes="64x64">
11+
12+
<meta name="keywords"
13+
content="ESC, Hacking, Free Software, DIY, End Summer Camp, Italian Community, non-profit" >
1014
<meta name="description"
1115
content="ESC è un incontro non-profit di persone interessate all’Hacking, al Software Libero e al DIY.">
1216
</head>

0 commit comments

Comments
 (0)