Skip to content

Commit

Permalink
Merge branch 'master' into patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
iquidus authored Aug 17, 2018
2 parents cf3773e + 1c87ec0 commit 2d0648a
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 7 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,14 @@ An open source block explorer written in node.js.

### See it in action

* [Jumbucks](http://explorer.getjumbucks.com)
* [Deutsche eMark](http://b.emark.tk/)
* [Sphere](http://sphere.iquidus.io)
* [SAR](http://explorer.sarcoin.info)
* [Vanillacoin](https://blockchain.vanillacoin.net/)
* [Neoscoin](http://explorer.infernopool.com/)
* [C2Chain](http://c2chain.info/)
* [Vertcoin](http://explorer.vertcoin.info/)
* [Vivo](http://vivo.explorerz.top:3003)
* [Florincoin](https://florincoin.info/info)
* [Maxcoin Explorer 1](https://explorer.maxcoinproject.net/)
* [Maxcoin Explorer 2](https://explorer2.maxcoinproject.net/)


*note: If you would like your instance mentioned here contact me*

Expand Down
3 changes: 3 additions & 0 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,9 @@ app.set('locale', locale);
app.set('display', settings.display);
app.set('markets', settings.markets);
app.set('twitter', settings.twitter);
app.set('facebook', settings.youtube);
app.set('googleplus', settings.googleplus);
app.set('youtube', settings.youtube);
app.set('genesis_block', settings.genesis_block);
app.set('index', settings.index);
app.set('heavy', settings.heavy);
Expand Down
2 changes: 2 additions & 0 deletions lib/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ exports.display = {
"twitter": true,
"facebook": false,
"googleplus": false,
"youtube": false,
"search": true,
"richlist": true,
"movement": true,
Expand Down Expand Up @@ -111,6 +112,7 @@ exports.index = {
exports.twitter = "iquidus";
exports.facebook = "yourfacebookpage";
exports.googleplus = "yourgooglepluspage";
exports.youtube = "youryoutubechannel";

exports.confirmations = 6;

Expand Down
4 changes: 3 additions & 1 deletion settings.json.template
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@
"twitter": true,
"facebook": false,
"googleplus": false,
"youtube": false,
"search": true,
"movement": true,
"network": true
Expand Down Expand Up @@ -114,10 +115,11 @@
"high_flag": 5000
},

// twitter, facebook, googleplus
// twitter, facebook, googleplus, youtube
"twitter": "iquidus",
"facebook": "yourfacebookpage",
"googleplus": "yourgooglepluspage",
"youtube": "youryoutubechannel",

//genesis
"genesis_tx": "65f705d2f385dc85763a317b3ec000063003d6b039546af5d8195a5ec27ae410",
Expand Down
7 changes: 6 additions & 1 deletion views/layout.jade
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,12 @@ html
li.pull-left
a#googleplus-icon(href="https://plus.google.com/#{settings.googleplus}", target='_blank')
span.glyphicon.fa.fa-google-plus
.col-md-4
if settings.display.youtube
ul.nav.navbar-nav
li.pull-left
a#youtube-icon(href="https://www.youtube.com/channel/#{settings.youtube}", target='_blank')
span.glyphicon.fa.fa-youtube
.col-md-4
ul.nav
li.text-center(style='margin-left:80px;margin-right:80px;')
p(style='margin-top:15px;')
Expand Down

0 comments on commit 2d0648a

Please # to comment.