diff --git a/_i18n/en/community/hero.html b/_i18n/en/community/hero.html new file mode 100644 index 0000000..ca0efbf --- /dev/null +++ b/_i18n/en/community/hero.html @@ -0,0 +1,21 @@ +
+
+ +
+ + + {% include nav-desktop.html %} + + +

{% t pages.home.hero-heading %}

+

{% t pages.home.hero-text %}

+ +
+ {% t nav.get-dash %} +
+ +
\ No newline at end of file diff --git a/_i18n/en/currency/hero.html b/_i18n/en/currency/hero.html new file mode 100644 index 0000000..ca0efbf --- /dev/null +++ b/_i18n/en/currency/hero.html @@ -0,0 +1,21 @@ +
+
+ +
+ + + {% include nav-desktop.html %} + + +

{% t pages.home.hero-heading %}

+

{% t pages.home.hero-text %}

+ +
+ {% t nav.get-dash %} +
+ +
\ No newline at end of file diff --git a/_i18n/en/get-dash/hero.html b/_i18n/en/get-dash/hero.html new file mode 100644 index 0000000..ca0efbf --- /dev/null +++ b/_i18n/en/get-dash/hero.html @@ -0,0 +1,21 @@ +
+
+ +
+ + + {% include nav-desktop.html %} + + +

{% t pages.home.hero-heading %}

+

{% t pages.home.hero-text %}

+ +
+ {% t nav.get-dash %} +
+ +
\ No newline at end of file diff --git a/_i18n/en/participate/hero.html b/_i18n/en/participate/hero.html new file mode 100644 index 0000000..ca0efbf --- /dev/null +++ b/_i18n/en/participate/hero.html @@ -0,0 +1,21 @@ +
+
+ +
+ + + {% include nav-desktop.html %} + + +

{% t pages.home.hero-heading %}

+

{% t pages.home.hero-text %}

+ +
+ {% t nav.get-dash %} +
+ +
\ No newline at end of file diff --git a/_i18n/es/community/hero.html b/_i18n/es/community/hero.html new file mode 100644 index 0000000..ca0efbf --- /dev/null +++ b/_i18n/es/community/hero.html @@ -0,0 +1,21 @@ +
+
+ +
+ + + {% include nav-desktop.html %} + + +

{% t pages.home.hero-heading %}

+

{% t pages.home.hero-text %}

+ +
+ {% t nav.get-dash %} +
+ +
\ No newline at end of file diff --git a/_i18n/es/currency/hero.html b/_i18n/es/currency/hero.html new file mode 100644 index 0000000..ca0efbf --- /dev/null +++ b/_i18n/es/currency/hero.html @@ -0,0 +1,21 @@ +
+
+ +
+ + + {% include nav-desktop.html %} + + +

{% t pages.home.hero-heading %}

+

{% t pages.home.hero-text %}

+ +
+ {% t nav.get-dash %} +
+ +
\ No newline at end of file diff --git a/_i18n/es/get-dash/hero.html b/_i18n/es/get-dash/hero.html new file mode 100644 index 0000000..ca0efbf --- /dev/null +++ b/_i18n/es/get-dash/hero.html @@ -0,0 +1,21 @@ +
+
+ +
+ + + {% include nav-desktop.html %} + + +

{% t pages.home.hero-heading %}

+

{% t pages.home.hero-text %}

+ +
+ {% t nav.get-dash %} +
+ +
\ No newline at end of file diff --git a/_i18n/es/participate/hero.html b/_i18n/es/participate/hero.html new file mode 100644 index 0000000..ca0efbf --- /dev/null +++ b/_i18n/es/participate/hero.html @@ -0,0 +1,21 @@ +
+
+ +
+ + + {% include nav-desktop.html %} + + +

{% t pages.home.hero-heading %}

+

{% t pages.home.hero-text %}

+ +
+ {% t nav.get-dash %} +
+ +
\ No newline at end of file diff --git a/_layouts/default.html b/_layouts/default.html index 406cf5f..a75d122 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -26,14 +26,15 @@ + + - {{ content }} @@ -83,6 +84,10 @@ if (jsSocialShares) { }); }); } + +$(document).ready(function() { + $('.menu').dropit(); +}); diff --git a/_site/assets/css/dropit.css b/_site/assets/css/dropit.css new file mode 100755 index 0000000..c4a0479 --- /dev/null +++ b/_site/assets/css/dropit.css @@ -0,0 +1,28 @@ +/* + * Dropit v1.1.0 + * http://dev7studios.com/dropit + * + * Copyright 2012, Dev7studios + * Free to use and abuse under the MIT license. + * http://www.opensource.org/licenses/mit-license.php + */ + +/* These styles assume you are using ul and li */ +.dropit { + list-style: none; + padding: 0; + margin: 0; +} +.dropit .dropit-trigger { position: relative; } +.dropit .dropit-submenu { + position: absolute; + top: 100%; + left: 0; /* dropdown left or right */ + z-index: 1000; + display: none; + min-width: 150px; + list-style: none; + padding: 0; + margin: 0; +} +.dropit .dropit-open .dropit-submenu { display: block; } diff --git a/_site/assets/js/dropit.js b/_site/assets/js/dropit.js new file mode 100755 index 0000000..8106db4 --- /dev/null +++ b/_site/assets/js/dropit.js @@ -0,0 +1,97 @@ +/* + * Dropit v1.1.0 + * http://dev7studios.com/dropit + * + * Copyright 2012, Dev7studios + * Free to use and abuse under the MIT license. + * http://www.opensource.org/licenses/mit-license.php + */ + +;(function($) { + + $.fn.dropit = function(method) { + + var methods = { + + init : function(options) { + this.dropit.settings = $.extend({}, this.dropit.defaults, options); + return this.each(function() { + var $el = $(this), + el = this, + settings = $.fn.dropit.settings; + + // Hide initial submenus + $el.addClass('dropit') + .find('>'+ settings.triggerParentEl +':has('+ settings.submenuEl +')').addClass('dropit-trigger') + .find(settings.submenuEl).addClass('dropit-submenu').hide(); + + // Open on click + $el.off(settings.action).on(settings.action, settings.triggerParentEl +':has('+ settings.submenuEl +') > '+ settings.triggerEl +'', function(){ + // Close click menu's if clicked again + if(settings.action == 'click' && $(this).parents(settings.triggerParentEl).hasClass('dropit-open')){ + settings.beforeHide.call(this); + $(this).parents(settings.triggerParentEl).removeClass('dropit-open').find(settings.submenuEl).hide(); + settings.afterHide.call(this); + return false; + } + + // Hide open menus + settings.beforeHide.call(this); + $('.dropit-open').removeClass('dropit-open').find('.dropit-submenu').hide(); + settings.afterHide.call(this); + + // Open this menu + settings.beforeShow.call(this); + $(this).parents(settings.triggerParentEl).addClass('dropit-open').find(settings.submenuEl).show(); + settings.afterShow.call(this); + + return false; + }); + + // Close if outside click + $(document).on('click', function(){ + settings.beforeHide.call(this); + $('.dropit-open').removeClass('dropit-open').find('.dropit-submenu').hide(); + settings.afterHide.call(this); + }); + + // If hover + if(settings.action == 'mouseenter'){ + $el.on('mouseleave', '.dropit-open', function(){ + settings.beforeHide.call(this); + $(this).removeClass('dropit-open').find(settings.submenuEl).hide(); + settings.afterHide.call(this); + }); + } + + settings.afterLoad.call(this); + }); + } + + }; + + if (methods[method]) { + return methods[method].apply(this, Array.prototype.slice.call(arguments, 1)); + } else if (typeof method === 'object' || !method) { + return methods.init.apply(this, arguments); + } else { + $.error( 'Method "' + method + '" does not exist in dropit plugin!'); + } + + }; + + $.fn.dropit.defaults = { + action: 'click', // The open action for the trigger + submenuEl: 'ul', // The submenu element + triggerEl: 'a', // The trigger element + triggerParentEl: 'li', // The trigger parent element + afterLoad: function(){}, // Triggers when plugin has loaded + beforeShow: function(){}, // Triggers before submenu is shown + afterShow: function(){}, // Triggers after submenu is shown + beforeHide: function(){}, // Triggers before submenu is hidden + afterHide: function(){} // Triggers before submenu is hidden + }; + + $.fn.dropit.settings = {}; + +})(jQuery); diff --git a/_site/community/index.html b/_site/community/index.html new file mode 100644 index 0000000..85b7f49 --- /dev/null +++ b/_site/community/index.html @@ -0,0 +1,216 @@ + + + + + Join the Dash Community — Dash + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+ + +
+ + + + +
+ + + +
+ + +
+ + + +

Dash is Digital Cash

+

The first truly-decentralized digital money system
Meet Digital Cash.

+ +
+ Get Dash +
+ +
+ +
+ + + +
+ + + + + +
+ + +
+ + + } + + + + + + diff --git a/_site/currency/index.html b/_site/currency/index.html new file mode 100644 index 0000000..f14f4af --- /dev/null +++ b/_site/currency/index.html @@ -0,0 +1,216 @@ + + + + + Dash Currency — Dash + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+ + +
+ + + + +
+ + + +
+ + +
+ + + +

Dash is Digital Cash

+

The first truly-decentralized digital money system
Meet Digital Cash.

+ +
+ Get Dash +
+ +
+ +
+ + + +
+ + + + + +
+ + +
+ + + } + + + + + + diff --git a/_site/es/community/index.html b/_site/es/community/index.html new file mode 100644 index 0000000..902cf42 --- /dev/null +++ b/_site/es/community/index.html @@ -0,0 +1,216 @@ + + + + + Join the Dash Community — Dash + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+ + +
+ + + + +
+ + + +
+ + +
+ + + +

Dash is Digital Cash

+

The first truly-decentralized digital money system
Meet Digital Cash.

+ +
+ Get Dash +
+ +
+ +
+ + + +
+ + + + + +
+ + +
+ + + } + + + + + + diff --git a/_site/es/currency/index.html b/_site/es/currency/index.html new file mode 100644 index 0000000..41511d5 --- /dev/null +++ b/_site/es/currency/index.html @@ -0,0 +1,216 @@ + + + + + Dash Currency — Dash + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+ + +
+ + + + +
+ + + +
+ + +
+ + + +

Dash is Digital Cash

+

The first truly-decentralized digital money system
Meet Digital Cash.

+ +
+ Get Dash +
+ +
+ +
+ + + +
+ + + + + +
+ + +
+ + + } + + + + + + diff --git a/_site/es/get-dash/index.html b/_site/es/get-dash/index.html index 6d193ca..00db5cc 100644 --- a/_site/es/get-dash/index.html +++ b/_site/es/get-dash/index.html @@ -3,7 +3,7 @@ Get Dash — Dash - + @@ -26,14 +26,15 @@ + + -
@@ -49,16 +50,20 @@ @@ -71,6 +76,7 @@
+

Dash is Digital Cash

The first truly-decentralized digital money system
Meet Digital Cash.

@@ -149,14 +155,17 @@ Social
@@ -196,6 +205,10 @@ if (jsSocialShares) { }); }); } + +$(document).ready(function() { + $('.menu').dropit(); +}); diff --git a/_site/es/index.html b/_site/es/index.html index e8a0b53..0fcc354 100644 --- a/_site/es/index.html +++ b/_site/es/index.html @@ -26,14 +26,15 @@ + + -
@@ -49,16 +50,20 @@ @@ -71,6 +76,7 @@
+

Dash is Digital Cash

The first truly-decentralized digital money system
Meet Digital Cash.

@@ -99,7 +105,7 @@

Shop direct with Dash

-

Instant and anonymous purchases, direct from your Dash Wallet

+ Instant and anonymous purchases, direct from your Dash Wallet More Merchants Become a Merchant @@ -107,13 +113,13 @@

Next-Gen Network Architecture

-

The core of Dash's unique technology is a 2-tier P2P network design that rewards users that hold Dash to host a type of supernode called a Masternode and host it 24/7 on dedicated hardware.

Masternodes work together in clusters and can't be faked like fullnodes in other digital currencies. This means they can provide new kinds of decentralized services, like instant transactions, anonymization and governance, without the threat of low-cost network attacks.

+ The core of Dash's unique technology is a 2-tier P2P network design that rewards users that hold Dash to host a type of supernode called a Masternode and host it 24/7 on dedicated hardware.

Masternodes work together in clusters and can't be faked like fullnodes in other digital currencies. This means they can provide new kinds of decentralized services, like instant transactions, anonymization and governance, without the threat of low-cost network attacks. Learn More

First Self Governing, Self Funding Protocol

-

Any important project of decision in Dash is agreed and funded by a decentralized public process that funds projects autonomously based on Masternode-netwok votes. This means Dash can fund it's own growth and adoption, consensus is guaranteed, and everyone is accountable to the network. And you can't game the system without buying over have the currency supply.

+ Any important project of decision in Dash is agreed and funded by a decentralized public process that funds projects autonomously based on Masternode-netwok votes. This means Dash can fund it's own growth and adoption, consensus is guaranteed, and everyone is accountable to the network. And you can't game the system without buying over have the currency supply. Proposals @@ -121,13 +127,13 @@

The Fastest Growing Network

-

Thanks to incentivization, Dash's network has grown 3,700 Masternodes meaning Dash is the only currency that can compete with Bitcoin for transaction processing power and future scalability.

+ Thanks to incentivization, Dash's network has grown 3,700 Masternodes meaning Dash is the only currency that can compete with Bitcoin for transaction processing power and future scalability. Network Stats

Digital Currency Evolution

-

What's next? We are working on a new decentralized service hosted on the Masternode network that will open up Dash to web and mobile users and be as easy to use as PayPal but still fully decentralized. Stay tuned...

+ What's next? We are working on a new decentralized service hosted on the Masternode network that will open up Dash to web and mobile users and be as easy to use as PayPal but still fully decentralized. Stay tuned... Learn More @@ -204,14 +210,17 @@ Social
@@ -251,6 +260,10 @@ if (jsSocialShares) { }); }); } + +$(document).ready(function() { + $('.menu').dropit(); +}); diff --git a/_site/es/participate/index.html b/_site/es/participate/index.html index c265280..eaa8780 100644 --- a/_site/es/participate/index.html +++ b/_site/es/participate/index.html @@ -2,8 +2,8 @@ - — Dash - + Join the Dash Network — Dash + @@ -26,142 +26,71 @@ + + - -
-
-
-
-
-

Join our Network

-

Earn Dash by powering, securing or developing the Dash Network

-
- -
-
-
+
+
+ +
+ + +
+ + + + +
+ + +
+ +
-
-
-
-
-
-
-

(mncount chart) 

-
-
-

(mn map) 

-
-
-

(featured hosting service) 

-
-
-

(featured sharing service) 

-
-
-
-
-
-

Setup a Masternode and power Dash's Network

-

Help power Dash by hosting a Masternode or join a shared hosting service. Masternodes operators are rewarded for providing decentralized services to our users and anyone can set one up.

- -
-
-
+ + + +

Dash is Digital Cash

+

The first truly-decentralized digital money system
Meet Digital Cash.

+ +
+ Get Dash +
+
-
-
-
-
-
-

Start Mining and Secure Dash's Network

-

Mine Dash using your computer or dedicated hardware. Miners are rewarded for securing the Dash Network.

- -
-
-
-
-

(nethash chart) 

-
-
-

(block explorer) 

-
-
-

(pool directory) 

-
-
-

(hardware vendors) 

-
-
-
-
-
-
-
-
-
-
-
-
-

(proposal site 1) 

-
-
-

(proposal site 2) 

-
-
-

(proposal guide) 

-
-
-

(proposal discussions)

-
-
-
-
-
-

Develop the Network with Blockchain funding

-

Dash's Network funds winning proposals each month for anything that can improve Dash like hiring developers, making decisions or integrating Dash payments into more online stores and retail outlets.

- -
-
-
-
-
-
-
-
-
-
-

Do you take Dash?

-

Integrate instant, anonymous payments to your webstore, app or retail outlet

-
- -
-
-
-
-
+ +
+ + +
@@ -226,14 +155,17 @@ Social
@@ -273,6 +205,10 @@ if (jsSocialShares) { }); }); } + +$(document).ready(function() { + $('.menu').dropit(); +}); diff --git a/_site/get-dash/index.html b/_site/get-dash/index.html index e640776..f54aaf5 100644 --- a/_site/get-dash/index.html +++ b/_site/get-dash/index.html @@ -3,7 +3,7 @@ Get Dash — Dash - + @@ -26,14 +26,15 @@ + + -
@@ -49,15 +50,19 @@ @@ -71,6 +76,7 @@
+

Dash is Digital Cash

The first truly-decentralized digital money system
Meet Digital Cash.

@@ -149,14 +155,17 @@ Social
@@ -196,6 +205,10 @@ if (jsSocialShares) { }); }); } + +$(document).ready(function() { + $('.menu').dropit(); +}); diff --git a/_site/index.html b/_site/index.html index 0c79f75..ccc10c3 100644 --- a/_site/index.html +++ b/_site/index.html @@ -26,14 +26,15 @@ + + -
@@ -49,15 +50,19 @@ @@ -71,6 +76,7 @@
+

Dash is Digital Cash

The first truly-decentralized digital money system
Meet Digital Cash.

@@ -99,7 +105,7 @@

Shop direct with Dash

-

Instant and anonymous purchases, direct from your Dash Wallet

+ Instant and anonymous purchases, direct from your Dash Wallet More Merchants Become a Merchant @@ -107,13 +113,13 @@

Next-Gen Network Architecture

-

The core of Dash's unique technology is a 2-tier P2P network design that rewards users that hold Dash to host a type of supernode called a Masternode and host it 24/7 on dedicated hardware.

Masternodes work together in clusters and can't be faked like fullnodes in other digital currencies. This means they can provide new kinds of decentralized services, like instant transactions, anonymization and governance, without the threat of low-cost network attacks.

+ The core of Dash's unique technology is a 2-tier P2P network design that rewards users that hold Dash to host a type of supernode called a Masternode and host it 24/7 on dedicated hardware.

Masternodes work together in clusters and can't be faked like fullnodes in other digital currencies. This means they can provide new kinds of decentralized services, like instant transactions, anonymization and governance, without the threat of low-cost network attacks. Learn More

First Self Governing, Self Funding Protocol

-

Any important project of decision in Dash is agreed and funded by a decentralized public process that funds projects autonomously based on Masternode-netwok votes. This means Dash can fund it's own growth and adoption, consensus is guaranteed, and everyone is accountable to the network. And you can't game the system without buying over have the currency supply.

+ Any important project of decision in Dash is agreed and funded by a decentralized public process that funds projects autonomously based on Masternode-netwok votes. This means Dash can fund it's own growth and adoption, consensus is guaranteed, and everyone is accountable to the network. And you can't game the system without buying over have the currency supply. Proposals @@ -121,13 +127,13 @@

The Fastest Growing Network

-

Thanks to incentivization, Dash's network has grown 3,700 Masternodes meaning Dash is the only currency that can compete with Bitcoin for transaction processing power and future scalability.

+ Thanks to incentivization, Dash's network has grown 3,700 Masternodes meaning Dash is the only currency that can compete with Bitcoin for transaction processing power and future scalability. Network Stats

Digital Currency Evolution

-

What's next? We are working on a new decentralized service hosted on the Masternode network that will open up Dash to web and mobile users and be as easy to use as PayPal but still fully decentralized. Stay tuned...

+ What's next? We are working on a new decentralized service hosted on the Masternode network that will open up Dash to web and mobile users and be as easy to use as PayPal but still fully decentralized. Stay tuned... Learn More @@ -204,14 +210,17 @@ Social
@@ -251,6 +260,10 @@ if (jsSocialShares) { }); }); } + +$(document).ready(function() { + $('.menu').dropit(); +}); diff --git a/_site/participate/index.html b/_site/participate/index.html index df0205f..24ca58c 100644 --- a/_site/participate/index.html +++ b/_site/participate/index.html @@ -2,8 +2,8 @@ - — Dash - + Join the Dash Network — Dash + @@ -26,142 +26,71 @@ + + - -
-
-
-
-
-

Join our Network

-

Earn Dash by powering, securing or developing the Dash Network

-
- -
-
-
+
+
+ +
+ + +
+ + + + +
+ + +
+ +
-
-
-
-
-
-
-

(mncount chart) 

-
-
-

(mn map) 

-
-
-

(featured hosting service) 

-
-
-

(featured sharing service) 

-
-
-
-
-
-

Setup a Masternode and power Dash's Network

-

Help power Dash by hosting a Masternode or join a shared hosting service. Masternodes operators are rewarded for providing decentralized services to our users and anyone can set one up.

- -
-
-
+ + + +

Dash is Digital Cash

+

The first truly-decentralized digital money system
Meet Digital Cash.

+ +
+ Get Dash +
+
-
-
-
-
-
-

Start Mining and Secure Dash's Network

-

Mine Dash using your computer or dedicated hardware. Miners are rewarded for securing the Dash Network.

- -
-
-
-
-

(nethash chart) 

-
-
-

(block explorer) 

-
-
-

(pool directory) 

-
-
-

(hardware vendors) 

-
-
-
-
-
-
-
-
-
-
-
-
-

(proposal site 1) 

-
-
-

(proposal site 2) 

-
-
-

(proposal guide) 

-
-
-

(proposal discussions)

-
-
-
-
-
-

Develop the Network with Blockchain funding

-

Dash's Network funds winning proposals each month for anything that can improve Dash like hiring developers, making decisions or integrating Dash payments into more online stores and retail outlets.

- -
-
-
-
-
-
-
-
-
-
-

Do you take Dash?

-

Integrate instant, anonymous payments to your webstore, app or retail outlet

-
- -
-
-
-
-
+ +
+ + +
@@ -226,14 +155,17 @@ Social
@@ -273,6 +205,10 @@ if (jsSocialShares) { }); }); } + +$(document).ready(function() { + $('.menu').dropit(); +}); diff --git a/assets/css/dropit.css b/assets/css/dropit.css new file mode 100755 index 0000000..c4a0479 --- /dev/null +++ b/assets/css/dropit.css @@ -0,0 +1,28 @@ +/* + * Dropit v1.1.0 + * http://dev7studios.com/dropit + * + * Copyright 2012, Dev7studios + * Free to use and abuse under the MIT license. + * http://www.opensource.org/licenses/mit-license.php + */ + +/* These styles assume you are using ul and li */ +.dropit { + list-style: none; + padding: 0; + margin: 0; +} +.dropit .dropit-trigger { position: relative; } +.dropit .dropit-submenu { + position: absolute; + top: 100%; + left: 0; /* dropdown left or right */ + z-index: 1000; + display: none; + min-width: 150px; + list-style: none; + padding: 0; + margin: 0; +} +.dropit .dropit-open .dropit-submenu { display: block; } diff --git a/assets/js/dropit.js b/assets/js/dropit.js new file mode 100755 index 0000000..8106db4 --- /dev/null +++ b/assets/js/dropit.js @@ -0,0 +1,97 @@ +/* + * Dropit v1.1.0 + * http://dev7studios.com/dropit + * + * Copyright 2012, Dev7studios + * Free to use and abuse under the MIT license. + * http://www.opensource.org/licenses/mit-license.php + */ + +;(function($) { + + $.fn.dropit = function(method) { + + var methods = { + + init : function(options) { + this.dropit.settings = $.extend({}, this.dropit.defaults, options); + return this.each(function() { + var $el = $(this), + el = this, + settings = $.fn.dropit.settings; + + // Hide initial submenus + $el.addClass('dropit') + .find('>'+ settings.triggerParentEl +':has('+ settings.submenuEl +')').addClass('dropit-trigger') + .find(settings.submenuEl).addClass('dropit-submenu').hide(); + + // Open on click + $el.off(settings.action).on(settings.action, settings.triggerParentEl +':has('+ settings.submenuEl +') > '+ settings.triggerEl +'', function(){ + // Close click menu's if clicked again + if(settings.action == 'click' && $(this).parents(settings.triggerParentEl).hasClass('dropit-open')){ + settings.beforeHide.call(this); + $(this).parents(settings.triggerParentEl).removeClass('dropit-open').find(settings.submenuEl).hide(); + settings.afterHide.call(this); + return false; + } + + // Hide open menus + settings.beforeHide.call(this); + $('.dropit-open').removeClass('dropit-open').find('.dropit-submenu').hide(); + settings.afterHide.call(this); + + // Open this menu + settings.beforeShow.call(this); + $(this).parents(settings.triggerParentEl).addClass('dropit-open').find(settings.submenuEl).show(); + settings.afterShow.call(this); + + return false; + }); + + // Close if outside click + $(document).on('click', function(){ + settings.beforeHide.call(this); + $('.dropit-open').removeClass('dropit-open').find('.dropit-submenu').hide(); + settings.afterHide.call(this); + }); + + // If hover + if(settings.action == 'mouseenter'){ + $el.on('mouseleave', '.dropit-open', function(){ + settings.beforeHide.call(this); + $(this).removeClass('dropit-open').find(settings.submenuEl).hide(); + settings.afterHide.call(this); + }); + } + + settings.afterLoad.call(this); + }); + } + + }; + + if (methods[method]) { + return methods[method].apply(this, Array.prototype.slice.call(arguments, 1)); + } else if (typeof method === 'object' || !method) { + return methods.init.apply(this, arguments); + } else { + $.error( 'Method "' + method + '" does not exist in dropit plugin!'); + } + + }; + + $.fn.dropit.defaults = { + action: 'click', // The open action for the trigger + submenuEl: 'ul', // The submenu element + triggerEl: 'a', // The trigger element + triggerParentEl: 'li', // The trigger parent element + afterLoad: function(){}, // Triggers when plugin has loaded + beforeShow: function(){}, // Triggers before submenu is shown + afterShow: function(){}, // Triggers after submenu is shown + beforeHide: function(){}, // Triggers before submenu is hidden + afterHide: function(){} // Triggers before submenu is hidden + }; + + $.fn.dropit.settings = {}; + +})(jQuery); diff --git a/community/index.html b/community/index.html new file mode 100644 index 0000000..fce0ba9 --- /dev/null +++ b/community/index.html @@ -0,0 +1,13 @@ +--- +layout: default +title: pages.community.title +description: pages.community.description +--- + +{% tf community/hero.html %} + +
+ + + +
\ No newline at end of file diff --git a/currency/index.html b/currency/index.html new file mode 100644 index 0000000..6a58d43 --- /dev/null +++ b/currency/index.html @@ -0,0 +1,13 @@ +--- +layout: default +title: pages.currency.title +description: pages.currency.description +--- + +{% tf currency/hero.html %} + +
+ + + +
\ No newline at end of file diff --git a/participate/index.html b/participate/index.html index 1350b63..80dc2af 100644 --- a/participate/index.html +++ b/participate/index.html @@ -1,134 +1,13 @@ --- layout: default -title: titles.participate -description: Participate +title: pages.participate.title +description: pages.participate.description --- -
-
-
-
-
-

Join our Network

-

Earn Dash by powering, securing or developing the Dash Network

-
- -
-
-
-
-
-
-
-
-
-
-
-

(mncount chart) 

-
-
-

(mn map) 

-
-
-

(featured hosting service) 

-
-
-

(featured sharing service) 

-
-
-
-
-
-

Setup a Masternode and power Dash's Network

-

Help power Dash by hosting a Masternode or join a shared hosting service. Masternodes operators are rewarded for providing decentralized services to our users and anyone can set one up.

- -
-
-
-
-
-
-
-
-
-

Start Mining and Secure Dash's Network

-

Mine Dash using your computer or dedicated hardware. Miners are rewarded for securing the Dash Network.

- -
-
-
-
-

(nethash chart) 

-
-
-

(block explorer) 

-
-
-

(pool directory) 

-
-
-

(hardware vendors) 

-
-
-
-
-
-
-
-
-
-
-
-
-

(proposal site 1) 

-
-
-

(proposal site 2) 

-
-
-

(proposal guide) 

-
-
-

(proposal discussions)

-
-
-
-
-
-

Develop the Network with Blockchain funding

-

Dash's Network funds winning proposals each month for anything that can improve Dash like hiring developers, making decisions or integrating Dash payments into more online stores and retail outlets.

- -
-
-
-
-
-
-
-
-
-
-

Do you take Dash?

-

Integrate instant, anonymous payments to your webstore, app or retail outlet

-
- -
-
-
-
-
+{% tf participate/hero.html %} + +
+ + +
\ No newline at end of file