Add favicon (#2974)
* Add favicon.ico * Add favicon to all html pages * Cleanup favicon background
This commit is contained in:
parent
c24ac577fb
commit
e304a2f3fe
BIN
js/assets/images/ethcore-block-black.png
Normal file
BIN
js/assets/images/ethcore-block-black.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
BIN
js/assets/images/parity.ico
Normal file
BIN
js/assets/images/parity.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.1 KiB |
@ -4,6 +4,7 @@
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<link rel="icon" href="parity.ico" type="image/x-icon">
|
||||
<title>Basic Token Deployment</title>
|
||||
</head>
|
||||
<body>
|
||||
|
@ -4,6 +4,7 @@
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<link rel="icon" href="parity.ico" type="image/x-icon">
|
||||
<title>GAVcoin</title>
|
||||
</head>
|
||||
<body>
|
||||
|
@ -4,6 +4,7 @@
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<link rel="icon" href="parity.ico" type="image/x-icon">
|
||||
<title>GitHub Hint</title>
|
||||
</head>
|
||||
<body>
|
||||
|
@ -4,6 +4,7 @@
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<link rel="icon" href="parity.ico" type="image/x-icon">
|
||||
<title>Token Registry</title>
|
||||
</head>
|
||||
<body>
|
||||
|
@ -4,6 +4,7 @@
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<link rel="icon" href="parity.ico" type="image/x-icon">
|
||||
<title>Method Signature Registry</title>
|
||||
</head>
|
||||
<body>
|
||||
|
@ -4,6 +4,7 @@
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<link rel="icon" href="parity.ico" type="image/x-icon">
|
||||
<title>Token Registry</title>
|
||||
</head>
|
||||
<body>
|
||||
|
@ -4,6 +4,7 @@
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<link rel="icon" href="parity.ico" type="image/x-icon">
|
||||
<title>dev::Parity.js</title>
|
||||
</head>
|
||||
<body>
|
||||
|
@ -4,6 +4,7 @@
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<link rel="icon" href="parity.ico" type="image/x-icon">
|
||||
<title>dev::Web3</title>
|
||||
</head>
|
||||
<body>
|
||||
|
@ -4,6 +4,7 @@
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<link rel="icon" href="parity.ico" type="image/x-icon">
|
||||
<title>Parity</title>
|
||||
<style>
|
||||
html, body, #container {
|
||||
|
@ -39,6 +39,8 @@ import './environment';
|
||||
|
||||
import '../assets/fonts/Roboto/font.css';
|
||||
import '../assets/fonts/RobotoMono/font.css';
|
||||
import '../assets/images/parity.ico';
|
||||
|
||||
import styles from './reset.css';
|
||||
import './index.html';
|
||||
|
||||
|
@ -83,9 +83,13 @@ module.exports = {
|
||||
loader: 'style!css'
|
||||
},
|
||||
{
|
||||
test: /\.(png|jpg|)$/,
|
||||
test: /\.(png|jpg)$/,
|
||||
loader: 'file-loader'
|
||||
},
|
||||
{
|
||||
test: /\.ico$/,
|
||||
loader: 'file-loader?name=[name].[ext]'
|
||||
},
|
||||
{
|
||||
test: /\.(woff(2)|ttf|eot|svg|otf)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
|
||||
loader: 'file-loader'
|
||||
|
Loading…
Reference in New Issue
Block a user