Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Expanse Branding 2 #4

Merged
merged 1 commit into from
Mar 21, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions www/app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,23 @@
{{content-for "head"}}
<link rel="stylesheet" href="{{rootURL}}assets/vendor.css">
<link rel="stylesheet" href="{{rootURL}}assets/open-ethereum-pool.css">
<link rel="apple-touch-icon" sizes="57x57" href="http://www.expanse.tech/fav/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="http://www.expanse.tech/fav/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="http://www.expanse.tech/fav/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="http://www.expanse.tech/fav/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="http://www.expanse.tech/fav/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="http://www.expanse.tech/fav/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="http://www.expanse.tech/fav/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="http://www.expanse.tech/fav/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="http://www.expanse.tech/fav/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="http://www.expanse.tech/fav/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="http://www.expanse.tech/fav/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="http://www.expanse.tech/fav/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="http://www.expanse.tech/fav/favicon-16x16.png">
<link rel="manifest" href="http://www.expanse.tech/fav/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="http://www.expanse.tech/fav/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
{{content-for "head-footer"}}
</head>
<body>
Expand Down
4 changes: 2 additions & 2 deletions www/app/templates/blocks/block.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{{#if block.uncle}}
<a href="https://etherscan.io/uncle/{{block.uncleHeight}}" rel="nofollow" target="_blank">{{format-number block.height}}</a>
{{else}}
<a href="https://etherscan.io/block/{{block.height}}" rel="nofollow" target="_blank">{{format-number block.height}}</a>
<a href="http://www.expanse.tech/explorer/block_number/{{block.height}}" rel="nofollow" target="_blank">{{format-number block.height}}</a>
{{/if}}
</td>
<td>
Expand All @@ -12,7 +12,7 @@
{{else if block.orphan}}
<span class="label label-danger">Orphan</span>
{{else}}
<a href="https://etherscan.io/block/{{block.hash}}" class="hash" rel="nofollow" target="_blank">{{block.hash}}</a>
<a href="http://www.expanse.tech/explorer/block_number/{{block.hash}}" class="hash" rel="nofollow" target="_blank">{{block.hash}}</a>
{{/if}}
</td>
<td>{{format-date-locale block.timestamp}}</td>
Expand Down
2 changes: 1 addition & 1 deletion www/app/templates/blocks/pending.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<tbody>
{{#each model.candidates as |block|}}
<tr>
<td><a href="https://etherscan.io/block/{{block.height}}" rel="nofollow" target="_blank">{{format-number block.height}}</a></td>
<td><a href="http://www.expanse.tech/explorer/block_number/{{block.height}}" rel="nofollow" target="_blank">{{format-number block.height}}</a></td>
<td>{{format-date-locale block.timestamp}}</td>
<td>
{{#if block.isLucky}}
Expand Down