Add favicon.
This commit is contained in:
parent
45b6ad6d5e
commit
a59d0f4438
@ -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
BIN
public/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.1 KiB |
BIN
public/images/favicon-16x16.png
Normal file
BIN
public/images/favicon-16x16.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.2 KiB |
BIN
public/images/favicon-192x192.png
Normal file
BIN
public/images/favicon-192x192.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.9 KiB |
BIN
public/images/favicon-32x32.png
Normal file
BIN
public/images/favicon-32x32.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.6 KiB |
BIN
public/images/favicon-96x96.png
Normal file
BIN
public/images/favicon-96x96.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.8 KiB |
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user