Add favicon.

This commit is contained in:
Nicolas Perriault 2017-04-30 12:56:09 +02:00
parent 45b6ad6d5e
commit a59d0f4438
No known key found for this signature in database
GPG Key ID: DA5E4C83904F7A2A
7 changed files with 10 additions and 3 deletions

View File

@ -4,7 +4,7 @@
"description": "An alternative Web client for Mastodon.",
"scripts": {
"build": "node_modules/.bin/elm-make src/Main.elm --warn --output=build/app.js && npm run copy-assets",
"copy-assets": "cp public/index.html build/ && cp public/style.css build/",
"copy-assets": "rimraf build && mkdir build && cp -r public/* build",
"debug": "node_modules/.bin/elm-live src/Main.elm --dir=public/ --output=public/app.js --debug",
"deploy": "npm run build && node_modules/.bin/gh-pages --dist build/",
"start": "node_modules/.bin/elm-live src/Main.elm --dir=public/ --output=public/app.js",
@ -27,6 +27,7 @@
"elm": "^0.18.0",
"elm-live": "^2.7.4",
"elm-test": "^0.18.2",
"gh-pages": "^0.12.0"
"gh-pages": "^0.12.0",
"rimraf": "^2.6.1"
}
}

BIN
public/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@ -5,7 +5,13 @@
<title>Tooty</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="//bootswatch.com/slate/bootstrap.min.css" media="all" rel="stylesheet" />
<link href="./style.css" media="all" rel="stylesheet" />
<link href="style.css" media="all" rel="stylesheet" />
<link rel="icon" type="image/png" sizes="192x192" href="images/favicon-192x192.png">
<link rel="icon" type="image/png" sizes="96x96" href="images/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon-16x16.png">
<meta name="msapplication-TileColor" content="#272b30">
<meta name="theme-color" content="#272b30">
</head>
<body>