mirror of
https://github.com/seigler/dash-website
synced 2025-07-27 07:16:10 +00:00
Moved base.html login inline
The base could not be included as a snippet because it causes a stack error due to a conflict with the i18n plugin.
This commit is contained in:
parent
57e052947c
commit
bcabe142a6
16 changed files with 603 additions and 475 deletions
|
@ -4,7 +4,7 @@
|
||||||
We are using Jekyll to generate the static html files.
|
We are using Jekyll to generate the static html files.
|
||||||
https://jekyllrb.com
|
https://jekyllrb.com
|
||||||
|
|
||||||
### Requirements
|
### Requirements (mac)
|
||||||
* Ruby: `brew install ruby`
|
* Ruby: `brew install ruby`
|
||||||
* Ruby Gems: https://rubygems.org/pages/download
|
* Ruby Gems: https://rubygems.org/pages/download
|
||||||
* NoddeJS: https://nodejs.org/en/
|
* NoddeJS: https://nodejs.org/en/
|
||||||
|
|
|
@ -1,3 +1,17 @@
|
||||||
|
{% assign base = '' %}
|
||||||
|
{% assign depth = page.url | split: '/' | size | minus: 1 %}
|
||||||
|
{% if depth == -1 %}{% assign base = '.' %}
|
||||||
|
{% elsif depth == 1 %}{% assign base = '..' %}
|
||||||
|
{% elsif depth == 2 %}{% assign base = '../..' %}
|
||||||
|
{% elsif depth == 3 %}{% assign base = '../../..' %}
|
||||||
|
{% elsif depth == 4 %}{% assign base = '../../../..' %}{% endif %}
|
||||||
|
|
||||||
|
{% if site.lang != "en" %}
|
||||||
|
{% assign base = base | prepend: '../' %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% capture basenav %}{{ base }}{% if site.lang != "en" %}/{{ site.lang }}{% endif %}{% endcapture %}
|
||||||
|
|
||||||
<div id="top" class="content">
|
<div id="top" class="content">
|
||||||
<a href="#"><img src="{{ base }}/assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
<a href="#"><img src="{{ base }}/assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,17 @@
|
||||||
|
{% assign base = '' %}
|
||||||
|
{% assign depth = page.url | split: '/' | size | minus: 1 %}
|
||||||
|
{% if depth == -1 %}{% assign base = '.' %}
|
||||||
|
{% elsif depth == 1 %}{% assign base = '..' %}
|
||||||
|
{% elsif depth == 2 %}{% assign base = '../..' %}
|
||||||
|
{% elsif depth == 3 %}{% assign base = '../../..' %}
|
||||||
|
{% elsif depth == 4 %}{% assign base = '../../../..' %}{% endif %}
|
||||||
|
|
||||||
|
{% if site.lang != "en" %}
|
||||||
|
{% assign base = base | prepend: '../' %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% capture basenav %}{{ base }}{% if site.lang != "en" %}/{{ site.lang }}{% endif %}{% endcapture %}
|
||||||
|
|
||||||
<nav class="overlay-menu">
|
<nav class="overlay-menu">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="{{ basenav }}/">{% t nav.what-is-dash %}</a></li>
|
<li><a href="{{ basenav }}/">{% t nav.what-is-dash %}</a></li>
|
||||||
|
|
|
@ -1,29 +1,29 @@
|
||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
{% include base.html %}
|
{% assign base = '' %}
|
||||||
|
{% assign depth = page.url | split: '/' | size | minus: 1 %}
|
||||||
|
{% if depth == -1 %}{% assign base = '.' %}
|
||||||
|
{% elsif depth == 1 %}{% assign base = '..' %}
|
||||||
|
{% elsif depth == 2 %}{% assign base = '../..' %}
|
||||||
|
{% elsif depth == 3 %}{% assign base = '../../..' %}
|
||||||
|
{% elsif depth == 4 %}{% assign base = '../../../..' %}{% endif %}
|
||||||
|
|
||||||
|
{% if site.lang != "en" %}
|
||||||
|
{% assign base = base | prepend: '../' %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% capture basenav %}{{ base }}{% if site.lang != "en" %}/{{ site.lang }}{% endif %}{% endcapture %}
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<title>{% if page.title %}{% t page.title %} — {% endif %}Dash</title>
|
<title>{% if page.title %}{% t page.title %} — {% endif %}Dash</title>
|
||||||
<meta name="description" content="{% t page.description %}">
|
<meta name="description" content="{% t page.description %}">
|
||||||
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
|
||||||
|
|
||||||
<link rel="apple-touch-icon" sizes="57x57" href="{{ base }}/assets/images/favicon/apple-icon-57x57.png">
|
<link rel="icon" type="image/png" sizes="16x16" href="{{ base }}/assets/img/favicon/favicon-16x16.png">
|
||||||
<link rel="apple-touch-icon" sizes="60x60" href="{{ base }}/assets/images/favicon/apple-icon-60x60.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="72x72" href="{{ base }}/assets/images/favicon/apple-icon-72x72.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="76x76" href="{{ base }}/assets/images/favicon/apple-icon-76x76.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="114x114" href="{{ base }}/assets/images/favicon/apple-icon-114x114.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="120x120" href="{{ base }}/assets/images/favicon/apple-icon-120x120.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="144x144" href="{{ base }}/assets/images/favicon/apple-icon-144x144.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="152x152" href="{{ base }}/assets/images/favicon/apple-icon-152x152.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="{{ base }}/assets/images/favicon/apple-icon-180x180.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="192x192" href="{{ base }}/assets/images/favicon/android-icon-192x192.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="{{ base }}/assets/images/favicon/favicon-32x32.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="96x96" href="{{ base }}/assets/images/favicon/favicon-96x96.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="{{ base }}/assets/images/favicon/favicon-16x16.png">
|
|
||||||
<link rel="manifest" href="{{ base }}/assets/images/favicon/manifest.json">
|
|
||||||
<meta name="msapplication-TileColor" content="#ffffff">
|
<meta name="msapplication-TileColor" content="#ffffff">
|
||||||
<meta name="msapplication-TileImage" content="{{ base }}/assets/images/favicon/ms-icon-144x144.png">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
<meta name="theme-color" content="#ffffff">
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="{{ base }}/assets/css/style.css">
|
<link rel="stylesheet" type="text/css" href="{{ base }}/assets/css/style.css">
|
||||||
|
|
BIN
_site/assets/img/favicon/favicon-16x16.png
Normal file
BIN
_site/assets/img/favicon/favicon-16x16.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 890 B |
|
@ -2,34 +2,28 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<title>Join the Dash Community — Dash</title>
|
<title>Join the Dash Community — Dash</title>
|
||||||
<meta name="description" content="Join the Dash Community">
|
<meta name="description" content="Join the Dash Community">
|
||||||
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
|
||||||
|
|
||||||
<link rel="apple-touch-icon" sizes="57x57" href="/assets/images/favicon/apple-icon-57x57.png">
|
<link rel="icon" type="image/png" sizes="16x16" href="../assets/img/favicon/favicon-16x16.png">
|
||||||
<link rel="apple-touch-icon" sizes="60x60" href="/assets/images/favicon/apple-icon-60x60.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="72x72" href="/assets/images/favicon/apple-icon-72x72.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="76x76" href="/assets/images/favicon/apple-icon-76x76.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="114x114" href="/assets/images/favicon/apple-icon-114x114.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="120x120" href="/assets/images/favicon/apple-icon-120x120.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="144x144" href="/assets/images/favicon/apple-icon-144x144.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="152x152" href="/assets/images/favicon/apple-icon-152x152.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="/assets/images/favicon/apple-icon-180x180.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="192x192" href="/assets/images/favicon/android-icon-192x192.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="/assets/images/favicon/favicon-32x32.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="96x96" href="/assets/images/favicon/favicon-96x96.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="/assets/images/favicon/favicon-16x16.png">
|
|
||||||
<link rel="manifest" href="/assets/images/favicon/manifest.json">
|
|
||||||
<meta name="msapplication-TileColor" content="#ffffff">
|
<meta name="msapplication-TileColor" content="#ffffff">
|
||||||
<meta name="msapplication-TileImage" content="/assets/images/favicon/ms-icon-144x144.png">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
<meta name="theme-color" content="#ffffff">
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="/assets/css/style.css">
|
<link rel="stylesheet" type="text/css" href="../assets/css/style.css">
|
||||||
<!-- JavaScript -->
|
<!-- JavaScript -->
|
||||||
<script src="//cdn.jsdelivr.net/lodash/4.12.0/lodash.min.js"></script>
|
<script src="//cdn.jsdelivr.net/lodash/4.12.0/lodash.min.js"></script>
|
||||||
<script src="/assets/js/moment.min.js"></script>
|
<script src="../assets/js/moment.min.js"></script>
|
||||||
<script src='//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
|
<script src='//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
|
@ -45,23 +39,31 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Navigation -->
|
<!-- Navigation -->
|
||||||
<div id="top" class="content">
|
|
||||||
<a href="#"><img src="/assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div id="top" class="content">
|
||||||
|
<a href="#"><img src="../assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
||||||
|
|
||||||
<nav class="desktop">
|
<nav class="desktop">
|
||||||
<ul class="menu">
|
<ul class="menu">
|
||||||
<li><a href="/">What is Dash</a></li>
|
<li><a href="../">What is Dash</a></li>
|
||||||
<li><a href="/get-dash/">Get Dash</a></li>
|
<li><a href="../get-dash/">Get Dash</a></li>
|
||||||
<li><a href="/participate/">Participate</a></li>
|
<li><a href="../participate/">Participate</a></li>
|
||||||
<li><a href="/currency/">Currency</a></li>
|
<li><a href="../currency/">Currency</a></li>
|
||||||
<li><a href="/community">Community</a></li>
|
<li><a href="../community">Community</a></li>
|
||||||
<li><a href="">Blog</a></li>
|
<li><a href="..">Blog</a></li>
|
||||||
<li><a href="">Project</a></li>
|
<li><a href="..">Project</a></li>
|
||||||
|
|
||||||
<li><a href="/community/">English</a></li>
|
<li><a href="../community/">English</a></li>
|
||||||
<li><a href="/es/community/">Español</a></li>
|
<li><a href="../es/community/">Español</a></li>
|
||||||
|
|
||||||
<li><a href="" title="Search">S</a></li>
|
<li><a href=".." title="Search">S</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
|
@ -128,10 +130,10 @@
|
||||||
|
|
||||||
|
|
||||||
<h2>Need some Dash?</h2>
|
<h2>Need some Dash?</h2>
|
||||||
<p>Signup to our forum we'll send you some Dash!</p>
|
<p>Signup on our forum we'll send you some Dash!</p>
|
||||||
|
|
||||||
<a href="#" class="btn-blue">Sign up for Dash</a>
|
<a href="#" class="btn-blue">Sign up for Dash</a>
|
||||||
<p>Enter your Email Address</p>
|
<p>Enter Your Email Address</p>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -194,24 +196,32 @@ Social
|
||||||
|
|
||||||
<!-- Mobile Nav -->
|
<!-- Mobile Nav -->
|
||||||
<div class="overlay" id="overlay">
|
<div class="overlay" id="overlay">
|
||||||
<a href="/"><img src="/assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
<a href="/"><img src="../assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
||||||
<nav class="overlay-menu">
|
|
||||||
<ul>
|
|
||||||
<li><a href="/">What is Dash</a></li>
|
|
||||||
<li><a href="/get-dash/">Get Dash</a></li>
|
|
||||||
<li><a href="/participate/">Participate</a></li>
|
|
||||||
<li><a href="/currency/">Currency</a></li>
|
|
||||||
<li><a href="/community">Community</a></li>
|
|
||||||
<li><a href="">Blog</a></li>
|
|
||||||
<li><a href="">Project</a></li>
|
|
||||||
|
|
||||||
<li><a href="/community/">English</a></li>
|
|
||||||
<li><a href="/es/community/">Español</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="overlay-menu">
|
||||||
|
<ul>
|
||||||
|
<li><a href="../">What is Dash</a></li>
|
||||||
|
<li><a href="../get-dash/">Get Dash</a></li>
|
||||||
|
<li><a href="../participate/">Participate</a></li>
|
||||||
|
<li><a href="../currency/">Currency</a></li>
|
||||||
|
<li><a href="../community">Community</a></li>
|
||||||
|
<li><a href="..">Blog</a></li>
|
||||||
|
<li><a href="..">Project</a></li>
|
||||||
|
|
||||||
|
<li><a href="../community/">English</a></li>
|
||||||
|
<li><a href="../es/community/">Español</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script src="/assets/js/full-menu.js"></script>
|
<script src="../assets/js/full-menu.js"></script>
|
||||||
}
|
}
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
|
@ -2,34 +2,28 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<title>Dash Currency — Dash</title>
|
<title>Dash Currency — Dash</title>
|
||||||
<meta name="description" content="Dash Currency">
|
<meta name="description" content="Dash Currency">
|
||||||
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
|
||||||
|
|
||||||
<link rel="apple-touch-icon" sizes="57x57" href="/assets/images/favicon/apple-icon-57x57.png">
|
<link rel="icon" type="image/png" sizes="16x16" href="../assets/img/favicon/favicon-16x16.png">
|
||||||
<link rel="apple-touch-icon" sizes="60x60" href="/assets/images/favicon/apple-icon-60x60.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="72x72" href="/assets/images/favicon/apple-icon-72x72.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="76x76" href="/assets/images/favicon/apple-icon-76x76.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="114x114" href="/assets/images/favicon/apple-icon-114x114.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="120x120" href="/assets/images/favicon/apple-icon-120x120.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="144x144" href="/assets/images/favicon/apple-icon-144x144.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="152x152" href="/assets/images/favicon/apple-icon-152x152.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="/assets/images/favicon/apple-icon-180x180.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="192x192" href="/assets/images/favicon/android-icon-192x192.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="/assets/images/favicon/favicon-32x32.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="96x96" href="/assets/images/favicon/favicon-96x96.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="/assets/images/favicon/favicon-16x16.png">
|
|
||||||
<link rel="manifest" href="/assets/images/favicon/manifest.json">
|
|
||||||
<meta name="msapplication-TileColor" content="#ffffff">
|
<meta name="msapplication-TileColor" content="#ffffff">
|
||||||
<meta name="msapplication-TileImage" content="/assets/images/favicon/ms-icon-144x144.png">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
<meta name="theme-color" content="#ffffff">
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="/assets/css/style.css">
|
<link rel="stylesheet" type="text/css" href="../assets/css/style.css">
|
||||||
<!-- JavaScript -->
|
<!-- JavaScript -->
|
||||||
<script src="//cdn.jsdelivr.net/lodash/4.12.0/lodash.min.js"></script>
|
<script src="//cdn.jsdelivr.net/lodash/4.12.0/lodash.min.js"></script>
|
||||||
<script src="/assets/js/moment.min.js"></script>
|
<script src="../assets/js/moment.min.js"></script>
|
||||||
<script src='//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
|
<script src='//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
|
@ -45,23 +39,31 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Navigation -->
|
<!-- Navigation -->
|
||||||
<div id="top" class="content">
|
|
||||||
<a href="#"><img src="/assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div id="top" class="content">
|
||||||
|
<a href="#"><img src="../assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
||||||
|
|
||||||
<nav class="desktop">
|
<nav class="desktop">
|
||||||
<ul class="menu">
|
<ul class="menu">
|
||||||
<li><a href="/">What is Dash</a></li>
|
<li><a href="../">What is Dash</a></li>
|
||||||
<li><a href="/get-dash/">Get Dash</a></li>
|
<li><a href="../get-dash/">Get Dash</a></li>
|
||||||
<li><a href="/participate/">Participate</a></li>
|
<li><a href="../participate/">Participate</a></li>
|
||||||
<li><a href="/currency/">Currency</a></li>
|
<li><a href="../currency/">Currency</a></li>
|
||||||
<li><a href="/community">Community</a></li>
|
<li><a href="../community">Community</a></li>
|
||||||
<li><a href="">Blog</a></li>
|
<li><a href="..">Blog</a></li>
|
||||||
<li><a href="">Project</a></li>
|
<li><a href="..">Project</a></li>
|
||||||
|
|
||||||
<li><a href="/currency/">English</a></li>
|
<li><a href="../currency/">English</a></li>
|
||||||
<li><a href="/es/currency/">Español</a></li>
|
<li><a href="../es/currency/">Español</a></li>
|
||||||
|
|
||||||
<li><a href="" title="Search">S</a></li>
|
<li><a href=".." title="Search">S</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
|
@ -160,24 +162,32 @@ Social
|
||||||
|
|
||||||
<!-- Mobile Nav -->
|
<!-- Mobile Nav -->
|
||||||
<div class="overlay" id="overlay">
|
<div class="overlay" id="overlay">
|
||||||
<a href="/"><img src="/assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
<a href="/"><img src="../assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
||||||
<nav class="overlay-menu">
|
|
||||||
<ul>
|
|
||||||
<li><a href="/">What is Dash</a></li>
|
|
||||||
<li><a href="/get-dash/">Get Dash</a></li>
|
|
||||||
<li><a href="/participate/">Participate</a></li>
|
|
||||||
<li><a href="/currency/">Currency</a></li>
|
|
||||||
<li><a href="/community">Community</a></li>
|
|
||||||
<li><a href="">Blog</a></li>
|
|
||||||
<li><a href="">Project</a></li>
|
|
||||||
|
|
||||||
<li><a href="/currency/">English</a></li>
|
|
||||||
<li><a href="/es/currency/">Español</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="overlay-menu">
|
||||||
|
<ul>
|
||||||
|
<li><a href="../">What is Dash</a></li>
|
||||||
|
<li><a href="../get-dash/">Get Dash</a></li>
|
||||||
|
<li><a href="../participate/">Participate</a></li>
|
||||||
|
<li><a href="../currency/">Currency</a></li>
|
||||||
|
<li><a href="../community">Community</a></li>
|
||||||
|
<li><a href="..">Blog</a></li>
|
||||||
|
<li><a href="..">Project</a></li>
|
||||||
|
|
||||||
|
<li><a href="../currency/">English</a></li>
|
||||||
|
<li><a href="../es/currency/">Español</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script src="/assets/js/full-menu.js"></script>
|
<script src="../assets/js/full-menu.js"></script>
|
||||||
}
|
}
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
|
@ -2,34 +2,28 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<title>Join the Dash Community — Dash</title>
|
<title>Join the Dash Community — Dash</title>
|
||||||
<meta name="description" content="Join the Dash Community">
|
<meta name="description" content="Join the Dash Community">
|
||||||
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
|
||||||
|
|
||||||
<link rel="apple-touch-icon" sizes="57x57" href="/assets/images/favicon/apple-icon-57x57.png">
|
<link rel="icon" type="image/png" sizes="16x16" href="../../assets/img/favicon/favicon-16x16.png">
|
||||||
<link rel="apple-touch-icon" sizes="60x60" href="/assets/images/favicon/apple-icon-60x60.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="72x72" href="/assets/images/favicon/apple-icon-72x72.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="76x76" href="/assets/images/favicon/apple-icon-76x76.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="114x114" href="/assets/images/favicon/apple-icon-114x114.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="120x120" href="/assets/images/favicon/apple-icon-120x120.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="144x144" href="/assets/images/favicon/apple-icon-144x144.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="152x152" href="/assets/images/favicon/apple-icon-152x152.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="/assets/images/favicon/apple-icon-180x180.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="192x192" href="/assets/images/favicon/android-icon-192x192.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="/assets/images/favicon/favicon-32x32.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="96x96" href="/assets/images/favicon/favicon-96x96.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="/assets/images/favicon/favicon-16x16.png">
|
|
||||||
<link rel="manifest" href="/assets/images/favicon/manifest.json">
|
|
||||||
<meta name="msapplication-TileColor" content="#ffffff">
|
<meta name="msapplication-TileColor" content="#ffffff">
|
||||||
<meta name="msapplication-TileImage" content="/assets/images/favicon/ms-icon-144x144.png">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
<meta name="theme-color" content="#ffffff">
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="/assets/css/style.css">
|
<link rel="stylesheet" type="text/css" href="../../assets/css/style.css">
|
||||||
<!-- JavaScript -->
|
<!-- JavaScript -->
|
||||||
<script src="//cdn.jsdelivr.net/lodash/4.12.0/lodash.min.js"></script>
|
<script src="//cdn.jsdelivr.net/lodash/4.12.0/lodash.min.js"></script>
|
||||||
<script src="/assets/js/moment.min.js"></script>
|
<script src="../../assets/js/moment.min.js"></script>
|
||||||
<script src='//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
|
<script src='//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
|
@ -45,23 +39,31 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Navigation -->
|
<!-- Navigation -->
|
||||||
<div id="top" class="content">
|
|
||||||
<a href="#"><img src="/assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div id="top" class="content">
|
||||||
|
<a href="#"><img src="../../assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
||||||
|
|
||||||
<nav class="desktop">
|
<nav class="desktop">
|
||||||
<ul class="menu">
|
<ul class="menu">
|
||||||
<li><a href="/">¿Cuál es la Dash</a></li>
|
<li><a href="../../es/">¿Cuál es la Dash</a></li>
|
||||||
<li><a href="/get-dash/">Get Dash</a></li>
|
<li><a href="../../es/get-dash/">Get Dash</a></li>
|
||||||
<li><a href="/participate/">Participate</a></li>
|
<li><a href="../../es/participate/">Participate</a></li>
|
||||||
<li><a href="/currency/">Currency</a></li>
|
<li><a href="../../es/currency/">Currency</a></li>
|
||||||
<li><a href="/community">Community</a></li>
|
<li><a href="../../es/community">Community</a></li>
|
||||||
<li><a href="">Blog</a></li>
|
<li><a href="../../es">Blog</a></li>
|
||||||
<li><a href="">Project</a></li>
|
<li><a href="../../es">Project</a></li>
|
||||||
|
|
||||||
<li><a href="/community/">English</a></li>
|
<li><a href="../../community/">English</a></li>
|
||||||
<li><a href="/es/community/">Español</a></li>
|
<li><a href="../../es/community/">Español</a></li>
|
||||||
|
|
||||||
<li><a href="" title="Search">S</a></li>
|
<li><a href="../../es" title="Search">S</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
|
@ -128,10 +130,10 @@
|
||||||
|
|
||||||
|
|
||||||
<h2>Need some Dash?</h2>
|
<h2>Need some Dash?</h2>
|
||||||
<p>Signup to our forum we'll send you some Dash!</p>
|
<p>Signup on our forum we'll send you some Dash!</p>
|
||||||
|
|
||||||
<a href="#" class="btn-blue">Sign up for Dash</a>
|
<a href="#" class="btn-blue">Sign up for Dash</a>
|
||||||
<p>Enter your Email Address</p>
|
<p>Enter Your Email Address</p>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -194,24 +196,32 @@ Social
|
||||||
|
|
||||||
<!-- Mobile Nav -->
|
<!-- Mobile Nav -->
|
||||||
<div class="overlay" id="overlay">
|
<div class="overlay" id="overlay">
|
||||||
<a href="/"><img src="/assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
<a href="/"><img src="../../assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
||||||
<nav class="overlay-menu">
|
|
||||||
<ul>
|
|
||||||
<li><a href="/">¿Cuál es la Dash</a></li>
|
|
||||||
<li><a href="/get-dash/">Get Dash</a></li>
|
|
||||||
<li><a href="/participate/">Participate</a></li>
|
|
||||||
<li><a href="/currency/">Currency</a></li>
|
|
||||||
<li><a href="/community">Community</a></li>
|
|
||||||
<li><a href="">Blog</a></li>
|
|
||||||
<li><a href="">Project</a></li>
|
|
||||||
|
|
||||||
<li><a href="/community/">English</a></li>
|
|
||||||
<li><a href="/es/community/">Español</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="overlay-menu">
|
||||||
|
<ul>
|
||||||
|
<li><a href="../../es/">¿Cuál es la Dash</a></li>
|
||||||
|
<li><a href="../../es/get-dash/">Get Dash</a></li>
|
||||||
|
<li><a href="../../es/participate/">Participate</a></li>
|
||||||
|
<li><a href="../../es/currency/">Currency</a></li>
|
||||||
|
<li><a href="../../es/community">Community</a></li>
|
||||||
|
<li><a href="../../es">Blog</a></li>
|
||||||
|
<li><a href="../../es">Project</a></li>
|
||||||
|
|
||||||
|
<li><a href="../../community/">English</a></li>
|
||||||
|
<li><a href="../../es/community/">Español</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script src="/assets/js/full-menu.js"></script>
|
<script src="../../assets/js/full-menu.js"></script>
|
||||||
}
|
}
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
|
@ -2,34 +2,28 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<title>Dash Currency — Dash</title>
|
<title>Dash Currency — Dash</title>
|
||||||
<meta name="description" content="Dash Currency">
|
<meta name="description" content="Dash Currency">
|
||||||
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
|
||||||
|
|
||||||
<link rel="apple-touch-icon" sizes="57x57" href="/assets/images/favicon/apple-icon-57x57.png">
|
<link rel="icon" type="image/png" sizes="16x16" href="../../assets/img/favicon/favicon-16x16.png">
|
||||||
<link rel="apple-touch-icon" sizes="60x60" href="/assets/images/favicon/apple-icon-60x60.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="72x72" href="/assets/images/favicon/apple-icon-72x72.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="76x76" href="/assets/images/favicon/apple-icon-76x76.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="114x114" href="/assets/images/favicon/apple-icon-114x114.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="120x120" href="/assets/images/favicon/apple-icon-120x120.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="144x144" href="/assets/images/favicon/apple-icon-144x144.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="152x152" href="/assets/images/favicon/apple-icon-152x152.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="/assets/images/favicon/apple-icon-180x180.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="192x192" href="/assets/images/favicon/android-icon-192x192.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="/assets/images/favicon/favicon-32x32.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="96x96" href="/assets/images/favicon/favicon-96x96.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="/assets/images/favicon/favicon-16x16.png">
|
|
||||||
<link rel="manifest" href="/assets/images/favicon/manifest.json">
|
|
||||||
<meta name="msapplication-TileColor" content="#ffffff">
|
<meta name="msapplication-TileColor" content="#ffffff">
|
||||||
<meta name="msapplication-TileImage" content="/assets/images/favicon/ms-icon-144x144.png">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
<meta name="theme-color" content="#ffffff">
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="/assets/css/style.css">
|
<link rel="stylesheet" type="text/css" href="../../assets/css/style.css">
|
||||||
<!-- JavaScript -->
|
<!-- JavaScript -->
|
||||||
<script src="//cdn.jsdelivr.net/lodash/4.12.0/lodash.min.js"></script>
|
<script src="//cdn.jsdelivr.net/lodash/4.12.0/lodash.min.js"></script>
|
||||||
<script src="/assets/js/moment.min.js"></script>
|
<script src="../../assets/js/moment.min.js"></script>
|
||||||
<script src='//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
|
<script src='//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
|
@ -45,23 +39,31 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Navigation -->
|
<!-- Navigation -->
|
||||||
<div id="top" class="content">
|
|
||||||
<a href="#"><img src="/assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div id="top" class="content">
|
||||||
|
<a href="#"><img src="../../assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
||||||
|
|
||||||
<nav class="desktop">
|
<nav class="desktop">
|
||||||
<ul class="menu">
|
<ul class="menu">
|
||||||
<li><a href="/">¿Cuál es la Dash</a></li>
|
<li><a href="../../es/">¿Cuál es la Dash</a></li>
|
||||||
<li><a href="/get-dash/">Get Dash</a></li>
|
<li><a href="../../es/get-dash/">Get Dash</a></li>
|
||||||
<li><a href="/participate/">Participate</a></li>
|
<li><a href="../../es/participate/">Participate</a></li>
|
||||||
<li><a href="/currency/">Currency</a></li>
|
<li><a href="../../es/currency/">Currency</a></li>
|
||||||
<li><a href="/community">Community</a></li>
|
<li><a href="../../es/community">Community</a></li>
|
||||||
<li><a href="">Blog</a></li>
|
<li><a href="../../es">Blog</a></li>
|
||||||
<li><a href="">Project</a></li>
|
<li><a href="../../es">Project</a></li>
|
||||||
|
|
||||||
<li><a href="/currency/">English</a></li>
|
<li><a href="../../currency/">English</a></li>
|
||||||
<li><a href="/es/currency/">Español</a></li>
|
<li><a href="../../es/currency/">Español</a></li>
|
||||||
|
|
||||||
<li><a href="" title="Search">S</a></li>
|
<li><a href="../../es" title="Search">S</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
|
@ -160,24 +162,32 @@ Social
|
||||||
|
|
||||||
<!-- Mobile Nav -->
|
<!-- Mobile Nav -->
|
||||||
<div class="overlay" id="overlay">
|
<div class="overlay" id="overlay">
|
||||||
<a href="/"><img src="/assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
<a href="/"><img src="../../assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
||||||
<nav class="overlay-menu">
|
|
||||||
<ul>
|
|
||||||
<li><a href="/">¿Cuál es la Dash</a></li>
|
|
||||||
<li><a href="/get-dash/">Get Dash</a></li>
|
|
||||||
<li><a href="/participate/">Participate</a></li>
|
|
||||||
<li><a href="/currency/">Currency</a></li>
|
|
||||||
<li><a href="/community">Community</a></li>
|
|
||||||
<li><a href="">Blog</a></li>
|
|
||||||
<li><a href="">Project</a></li>
|
|
||||||
|
|
||||||
<li><a href="/currency/">English</a></li>
|
|
||||||
<li><a href="/es/currency/">Español</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="overlay-menu">
|
||||||
|
<ul>
|
||||||
|
<li><a href="../../es/">¿Cuál es la Dash</a></li>
|
||||||
|
<li><a href="../../es/get-dash/">Get Dash</a></li>
|
||||||
|
<li><a href="../../es/participate/">Participate</a></li>
|
||||||
|
<li><a href="../../es/currency/">Currency</a></li>
|
||||||
|
<li><a href="../../es/community">Community</a></li>
|
||||||
|
<li><a href="../../es">Blog</a></li>
|
||||||
|
<li><a href="../../es">Project</a></li>
|
||||||
|
|
||||||
|
<li><a href="../../currency/">English</a></li>
|
||||||
|
<li><a href="../../es/currency/">Español</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script src="/assets/js/full-menu.js"></script>
|
<script src="../../assets/js/full-menu.js"></script>
|
||||||
}
|
}
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
|
@ -2,34 +2,28 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<title>Get Dash — Dash</title>
|
<title>Get Dash — Dash</title>
|
||||||
<meta name="description" content="Download the wallet and get Dash at an exchange.">
|
<meta name="description" content="Download the wallet and get Dash at an exchange.">
|
||||||
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
|
||||||
|
|
||||||
<link rel="apple-touch-icon" sizes="57x57" href="/assets/images/favicon/apple-icon-57x57.png">
|
<link rel="icon" type="image/png" sizes="16x16" href="../../assets/img/favicon/favicon-16x16.png">
|
||||||
<link rel="apple-touch-icon" sizes="60x60" href="/assets/images/favicon/apple-icon-60x60.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="72x72" href="/assets/images/favicon/apple-icon-72x72.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="76x76" href="/assets/images/favicon/apple-icon-76x76.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="114x114" href="/assets/images/favicon/apple-icon-114x114.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="120x120" href="/assets/images/favicon/apple-icon-120x120.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="144x144" href="/assets/images/favicon/apple-icon-144x144.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="152x152" href="/assets/images/favicon/apple-icon-152x152.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="/assets/images/favicon/apple-icon-180x180.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="192x192" href="/assets/images/favicon/android-icon-192x192.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="/assets/images/favicon/favicon-32x32.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="96x96" href="/assets/images/favicon/favicon-96x96.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="/assets/images/favicon/favicon-16x16.png">
|
|
||||||
<link rel="manifest" href="/assets/images/favicon/manifest.json">
|
|
||||||
<meta name="msapplication-TileColor" content="#ffffff">
|
<meta name="msapplication-TileColor" content="#ffffff">
|
||||||
<meta name="msapplication-TileImage" content="/assets/images/favicon/ms-icon-144x144.png">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
<meta name="theme-color" content="#ffffff">
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="/assets/css/style.css">
|
<link rel="stylesheet" type="text/css" href="../../assets/css/style.css">
|
||||||
<!-- JavaScript -->
|
<!-- JavaScript -->
|
||||||
<script src="//cdn.jsdelivr.net/lodash/4.12.0/lodash.min.js"></script>
|
<script src="//cdn.jsdelivr.net/lodash/4.12.0/lodash.min.js"></script>
|
||||||
<script src="/assets/js/moment.min.js"></script>
|
<script src="../../assets/js/moment.min.js"></script>
|
||||||
<script src='//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
|
<script src='//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
|
@ -45,23 +39,31 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Navigation -->
|
<!-- Navigation -->
|
||||||
<div id="top" class="content">
|
|
||||||
<a href="#"><img src="/assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div id="top" class="content">
|
||||||
|
<a href="#"><img src="../../assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
||||||
|
|
||||||
<nav class="desktop">
|
<nav class="desktop">
|
||||||
<ul class="menu">
|
<ul class="menu">
|
||||||
<li><a href="/">¿Cuál es la Dash</a></li>
|
<li><a href="../../es/">¿Cuál es la Dash</a></li>
|
||||||
<li><a href="/get-dash/">Get Dash</a></li>
|
<li><a href="../../es/get-dash/">Get Dash</a></li>
|
||||||
<li><a href="/participate/">Participate</a></li>
|
<li><a href="../../es/participate/">Participate</a></li>
|
||||||
<li><a href="/currency/">Currency</a></li>
|
<li><a href="../../es/currency/">Currency</a></li>
|
||||||
<li><a href="/community">Community</a></li>
|
<li><a href="../../es/community">Community</a></li>
|
||||||
<li><a href="">Blog</a></li>
|
<li><a href="../../es">Blog</a></li>
|
||||||
<li><a href="">Project</a></li>
|
<li><a href="../../es">Project</a></li>
|
||||||
|
|
||||||
<li><a href="/get-dash/">English</a></li>
|
<li><a href="../../get-dash/">English</a></li>
|
||||||
<li><a href="/es/get-dash/">Español</a></li>
|
<li><a href="../../es/get-dash/">Español</a></li>
|
||||||
|
|
||||||
<li><a href="" title="Search">S</a></li>
|
<li><a href="../../es" title="Search">S</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
|
@ -112,7 +114,7 @@
|
||||||
|
|
||||||
|
|
||||||
<h2>Trade Dash on an exchange</h2>
|
<h2>Trade Dash on an exchange</h2>
|
||||||
<p>Trade local currency for Dash on an Exchange Market</p>
|
<p>Trade local currency for Dash on an exchange</p>
|
||||||
|
|
||||||
<a href="#" class="btn-blue">Trade Dash</a>
|
<a href="#" class="btn-blue">Trade Dash</a>
|
||||||
|
|
||||||
|
@ -124,22 +126,22 @@
|
||||||
|
|
||||||
|
|
||||||
<h2>Shop direct with Dash</h2>
|
<h2>Shop direct with Dash</h2>
|
||||||
<p>Instant and anonymous online purchases, direct from your Dash Wallet</p>
|
<p>Instant and anonymous online purchases, direct from your Dash wallet</p>
|
||||||
|
|
||||||
<a href="#" class="btn-blue">More Merchants</a>
|
<a href="#" class="btn-blue">More Merchants</a>
|
||||||
|
|
||||||
|
|
||||||
<h2>Shop at Visa stores</h2>
|
<h2>Shop at Visa stores</h2>
|
||||||
<p>Dash-Visa debit card with no foreign transaction fees & mobile tap & pay</p>
|
<p>Dash-Visa debit card with no foreign transaction fees and mobile "tap & pay"</p>
|
||||||
|
|
||||||
<a href="#" class="btn-blue">Get Shake</a>
|
<a href="#" class="btn-blue">Get Shake</a>
|
||||||
|
|
||||||
|
|
||||||
<h2>Need some Dash?</h2>
|
<h2>Need some Dash?</h2>
|
||||||
<p>Signup to our forum we'll send you some Dash!</p>
|
<p>Signup on our forum we'll send you some Dash!</p>
|
||||||
|
|
||||||
<a href="#" class="btn-blue">Sign up for Dash</a>
|
<a href="#" class="btn-blue">Sign up for Dash</a>
|
||||||
<p>Enter your Email Address</p>
|
<p>Enter Your Email Address</p>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -202,24 +204,32 @@ Social
|
||||||
|
|
||||||
<!-- Mobile Nav -->
|
<!-- Mobile Nav -->
|
||||||
<div class="overlay" id="overlay">
|
<div class="overlay" id="overlay">
|
||||||
<a href="/"><img src="/assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
<a href="/"><img src="../../assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
||||||
<nav class="overlay-menu">
|
|
||||||
<ul>
|
|
||||||
<li><a href="/">¿Cuál es la Dash</a></li>
|
|
||||||
<li><a href="/get-dash/">Get Dash</a></li>
|
|
||||||
<li><a href="/participate/">Participate</a></li>
|
|
||||||
<li><a href="/currency/">Currency</a></li>
|
|
||||||
<li><a href="/community">Community</a></li>
|
|
||||||
<li><a href="">Blog</a></li>
|
|
||||||
<li><a href="">Project</a></li>
|
|
||||||
|
|
||||||
<li><a href="/get-dash/">English</a></li>
|
|
||||||
<li><a href="/es/get-dash/">Español</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="overlay-menu">
|
||||||
|
<ul>
|
||||||
|
<li><a href="../../es/">¿Cuál es la Dash</a></li>
|
||||||
|
<li><a href="../../es/get-dash/">Get Dash</a></li>
|
||||||
|
<li><a href="../../es/participate/">Participate</a></li>
|
||||||
|
<li><a href="../../es/currency/">Currency</a></li>
|
||||||
|
<li><a href="../../es/community">Community</a></li>
|
||||||
|
<li><a href="../../es">Blog</a></li>
|
||||||
|
<li><a href="../../es">Project</a></li>
|
||||||
|
|
||||||
|
<li><a href="../../get-dash/">English</a></li>
|
||||||
|
<li><a href="../../es/get-dash/">Español</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script src="/assets/js/full-menu.js"></script>
|
<script src="../../assets/js/full-menu.js"></script>
|
||||||
}
|
}
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
|
@ -2,34 +2,28 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<title>Web Oficial | Privada Moneda Digital — Dash</title>
|
<title>Web Oficial | Privada Moneda Digital — Dash</title>
|
||||||
<meta name="description" content="Dash is Digital Cash">
|
<meta name="description" content="Dash is Digital Cash">
|
||||||
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
|
||||||
|
|
||||||
<link rel="apple-touch-icon" sizes="57x57" href="/assets/images/favicon/apple-icon-57x57.png">
|
<link rel="icon" type="image/png" sizes="16x16" href=".././assets/img/favicon/favicon-16x16.png">
|
||||||
<link rel="apple-touch-icon" sizes="60x60" href="/assets/images/favicon/apple-icon-60x60.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="72x72" href="/assets/images/favicon/apple-icon-72x72.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="76x76" href="/assets/images/favicon/apple-icon-76x76.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="114x114" href="/assets/images/favicon/apple-icon-114x114.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="120x120" href="/assets/images/favicon/apple-icon-120x120.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="144x144" href="/assets/images/favicon/apple-icon-144x144.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="152x152" href="/assets/images/favicon/apple-icon-152x152.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="/assets/images/favicon/apple-icon-180x180.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="192x192" href="/assets/images/favicon/android-icon-192x192.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="/assets/images/favicon/favicon-32x32.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="96x96" href="/assets/images/favicon/favicon-96x96.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="/assets/images/favicon/favicon-16x16.png">
|
|
||||||
<link rel="manifest" href="/assets/images/favicon/manifest.json">
|
|
||||||
<meta name="msapplication-TileColor" content="#ffffff">
|
<meta name="msapplication-TileColor" content="#ffffff">
|
||||||
<meta name="msapplication-TileImage" content="/assets/images/favicon/ms-icon-144x144.png">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
<meta name="theme-color" content="#ffffff">
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="/assets/css/style.css">
|
<link rel="stylesheet" type="text/css" href=".././assets/css/style.css">
|
||||||
<!-- JavaScript -->
|
<!-- JavaScript -->
|
||||||
<script src="//cdn.jsdelivr.net/lodash/4.12.0/lodash.min.js"></script>
|
<script src="//cdn.jsdelivr.net/lodash/4.12.0/lodash.min.js"></script>
|
||||||
<script src="/assets/js/moment.min.js"></script>
|
<script src=".././assets/js/moment.min.js"></script>
|
||||||
<script src='//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
|
<script src='//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
|
@ -45,23 +39,31 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Navigation -->
|
<!-- Navigation -->
|
||||||
<div id="top" class="content">
|
|
||||||
<a href="#"><img src="/assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div id="top" class="content">
|
||||||
|
<a href="#"><img src=".././assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
||||||
|
|
||||||
<nav class="desktop">
|
<nav class="desktop">
|
||||||
<ul class="menu">
|
<ul class="menu">
|
||||||
<li><a href="/">¿Cuál es la Dash</a></li>
|
<li><a href=".././es/">¿Cuál es la Dash</a></li>
|
||||||
<li><a href="/get-dash/">Get Dash</a></li>
|
<li><a href=".././es/get-dash/">Get Dash</a></li>
|
||||||
<li><a href="/participate/">Participate</a></li>
|
<li><a href=".././es/participate/">Participate</a></li>
|
||||||
<li><a href="/currency/">Currency</a></li>
|
<li><a href=".././es/currency/">Currency</a></li>
|
||||||
<li><a href="/community">Community</a></li>
|
<li><a href=".././es/community">Community</a></li>
|
||||||
<li><a href="">Blog</a></li>
|
<li><a href=".././es">Blog</a></li>
|
||||||
<li><a href="">Project</a></li>
|
<li><a href=".././es">Project</a></li>
|
||||||
|
|
||||||
<li><a href="/">English</a></li>
|
<li><a href=".././">English</a></li>
|
||||||
<li><a href="/es/">Español</a></li>
|
<li><a href=".././es/">Español</a></li>
|
||||||
|
|
||||||
<li><a href="" title="Search">S</a></li>
|
<li><a href=".././es" title="Search">S</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
|
@ -86,8 +88,8 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<h2>Dash is Digital Cash you can Spend Online</h2>
|
<h2>Dash is Digital Cash You Can Spend Online</h2>
|
||||||
<p>Use Dash to make instant, anonymous payments online or in-store using our secure open-source platform hosted by 1,000's of users around the world.</p>
|
<p>Use Dash to make instant, anonymous payments online or in-store using our secure open-source platform hosted by thousands of users around the world.</p>
|
||||||
|
|
||||||
<a href="#" class="btn-blue">Watch Overview Video</a>
|
<a href="#" class="btn-blue">Watch Overview Video</a>
|
||||||
|
|
||||||
|
@ -103,7 +105,7 @@
|
||||||
|
|
||||||
<h2>Shop direct with Dash</h2>
|
<h2>Shop direct with Dash</h2>
|
||||||
|
|
||||||
Instant and anonymous purchases, direct from your Dash Wallet
|
Instant and anonymous purchases, direct from your Dash wallet
|
||||||
|
|
||||||
<a href="#" class="btn-blue">More Merchants</a>
|
<a href="#" class="btn-blue">More Merchants</a>
|
||||||
<a href="#" class="btn-blue">Become a Merchant</a>
|
<a href="#" class="btn-blue">Become a Merchant</a>
|
||||||
|
@ -111,13 +113,13 @@
|
||||||
|
|
||||||
<h2>Next-Gen Network Architecture</h2>
|
<h2>Next-Gen Network Architecture</h2>
|
||||||
|
|
||||||
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.<br /><br /> 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 two-tier P2P network design that rewards users who run a special kind of node called a masternode and host it 24/7 on dedicated hardware. The network requires that those who run masternodes must provide cryptographic proof that they own 1,000 Dash per masternode. This secures the network against Sybil attacks by making such attacks prohibitively expensive.<br /><br /> 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.
|
||||||
|
|
||||||
<a href="#" class="btn-blue">Learn More</a>
|
<a href="#" class="btn-blue">Learn More</a>
|
||||||
|
|
||||||
<h2>First Self Governing, Self Funding Protocol</h2>
|
<h2>First Self Governing, Self Funding Protocol</h2>
|
||||||
|
|
||||||
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 its own growth and adoption, consensus is guaranteed, and everyone is accountable to the network. Not only that, but an attacker can't game the system without buying over half the currency supply.
|
||||||
|
|
||||||
<a href="#" class="btn-blue">Proposals</a>
|
<a href="#" class="btn-blue">Proposals</a>
|
||||||
|
|
||||||
|
@ -125,13 +127,13 @@
|
||||||
|
|
||||||
<h2>The Fastest Growing Network</h2>
|
<h2>The Fastest Growing Network</h2>
|
||||||
|
|
||||||
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 to 3,900 Masternodes meaning Dash is the only currency that can compete with Bitcoin for transaction processing power and future scalability.
|
||||||
|
|
||||||
<a href="#" class="btn-blue">Network Stats</a>
|
<a href="#" class="btn-blue">Network Stats</a>
|
||||||
|
|
||||||
<h2>Digital Currency Evolution</h2>
|
<h2>Digital Currency Evolution</h2>
|
||||||
|
|
||||||
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 while being as easy to use as PayPal but still fully decentralized. Stay tuned...
|
||||||
|
|
||||||
<a href="#" class="btn-blue">Learn More</a>
|
<a href="#" class="btn-blue">Learn More</a>
|
||||||
|
|
||||||
|
@ -205,24 +207,32 @@ Social
|
||||||
|
|
||||||
<!-- Mobile Nav -->
|
<!-- Mobile Nav -->
|
||||||
<div class="overlay" id="overlay">
|
<div class="overlay" id="overlay">
|
||||||
<a href="/"><img src="/assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
<a href="/"><img src=".././assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
||||||
<nav class="overlay-menu">
|
|
||||||
<ul>
|
|
||||||
<li><a href="/">¿Cuál es la Dash</a></li>
|
|
||||||
<li><a href="/get-dash/">Get Dash</a></li>
|
|
||||||
<li><a href="/participate/">Participate</a></li>
|
|
||||||
<li><a href="/currency/">Currency</a></li>
|
|
||||||
<li><a href="/community">Community</a></li>
|
|
||||||
<li><a href="">Blog</a></li>
|
|
||||||
<li><a href="">Project</a></li>
|
|
||||||
|
|
||||||
<li><a href="/">English</a></li>
|
|
||||||
<li><a href="/es/">Español</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="overlay-menu">
|
||||||
|
<ul>
|
||||||
|
<li><a href=".././es/">¿Cuál es la Dash</a></li>
|
||||||
|
<li><a href=".././es/get-dash/">Get Dash</a></li>
|
||||||
|
<li><a href=".././es/participate/">Participate</a></li>
|
||||||
|
<li><a href=".././es/currency/">Currency</a></li>
|
||||||
|
<li><a href=".././es/community">Community</a></li>
|
||||||
|
<li><a href=".././es">Blog</a></li>
|
||||||
|
<li><a href=".././es">Project</a></li>
|
||||||
|
|
||||||
|
<li><a href=".././">English</a></li>
|
||||||
|
<li><a href=".././es/">Español</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script src="/assets/js/full-menu.js"></script>
|
<script src=".././assets/js/full-menu.js"></script>
|
||||||
}
|
}
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
|
@ -2,34 +2,28 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<title>Join the Dash Network — Dash</title>
|
<title>Join the Dash Network — Dash</title>
|
||||||
<meta name="description" content="Join the Dash Network">
|
<meta name="description" content="Join the Dash Network">
|
||||||
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
|
||||||
|
|
||||||
<link rel="apple-touch-icon" sizes="57x57" href="/assets/images/favicon/apple-icon-57x57.png">
|
<link rel="icon" type="image/png" sizes="16x16" href="../../assets/img/favicon/favicon-16x16.png">
|
||||||
<link rel="apple-touch-icon" sizes="60x60" href="/assets/images/favicon/apple-icon-60x60.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="72x72" href="/assets/images/favicon/apple-icon-72x72.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="76x76" href="/assets/images/favicon/apple-icon-76x76.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="114x114" href="/assets/images/favicon/apple-icon-114x114.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="120x120" href="/assets/images/favicon/apple-icon-120x120.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="144x144" href="/assets/images/favicon/apple-icon-144x144.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="152x152" href="/assets/images/favicon/apple-icon-152x152.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="/assets/images/favicon/apple-icon-180x180.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="192x192" href="/assets/images/favicon/android-icon-192x192.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="/assets/images/favicon/favicon-32x32.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="96x96" href="/assets/images/favicon/favicon-96x96.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="/assets/images/favicon/favicon-16x16.png">
|
|
||||||
<link rel="manifest" href="/assets/images/favicon/manifest.json">
|
|
||||||
<meta name="msapplication-TileColor" content="#ffffff">
|
<meta name="msapplication-TileColor" content="#ffffff">
|
||||||
<meta name="msapplication-TileImage" content="/assets/images/favicon/ms-icon-144x144.png">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
<meta name="theme-color" content="#ffffff">
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="/assets/css/style.css">
|
<link rel="stylesheet" type="text/css" href="../../assets/css/style.css">
|
||||||
<!-- JavaScript -->
|
<!-- JavaScript -->
|
||||||
<script src="//cdn.jsdelivr.net/lodash/4.12.0/lodash.min.js"></script>
|
<script src="//cdn.jsdelivr.net/lodash/4.12.0/lodash.min.js"></script>
|
||||||
<script src="/assets/js/moment.min.js"></script>
|
<script src="../../assets/js/moment.min.js"></script>
|
||||||
<script src='//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
|
<script src='//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
|
@ -45,23 +39,31 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Navigation -->
|
<!-- Navigation -->
|
||||||
<div id="top" class="content">
|
|
||||||
<a href="#"><img src="/assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div id="top" class="content">
|
||||||
|
<a href="#"><img src="../../assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
||||||
|
|
||||||
<nav class="desktop">
|
<nav class="desktop">
|
||||||
<ul class="menu">
|
<ul class="menu">
|
||||||
<li><a href="/">¿Cuál es la Dash</a></li>
|
<li><a href="../../es/">¿Cuál es la Dash</a></li>
|
||||||
<li><a href="/get-dash/">Get Dash</a></li>
|
<li><a href="../../es/get-dash/">Get Dash</a></li>
|
||||||
<li><a href="/participate/">Participate</a></li>
|
<li><a href="../../es/participate/">Participate</a></li>
|
||||||
<li><a href="/currency/">Currency</a></li>
|
<li><a href="../../es/currency/">Currency</a></li>
|
||||||
<li><a href="/community">Community</a></li>
|
<li><a href="../../es/community">Community</a></li>
|
||||||
<li><a href="">Blog</a></li>
|
<li><a href="../../es">Blog</a></li>
|
||||||
<li><a href="">Project</a></li>
|
<li><a href="../../es">Project</a></li>
|
||||||
|
|
||||||
<li><a href="/participate/">English</a></li>
|
<li><a href="../../participate/">English</a></li>
|
||||||
<li><a href="/es/participate/">Español</a></li>
|
<li><a href="../../es/participate/">Español</a></li>
|
||||||
|
|
||||||
<li><a href="" title="Search">S</a></li>
|
<li><a href="../../es" title="Search">S</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
|
@ -77,7 +79,7 @@
|
||||||
|
|
||||||
<!-- Hero content -->
|
<!-- Hero content -->
|
||||||
<h1 class="content">Join our Network</h1>
|
<h1 class="content">Join our Network</h1>
|
||||||
<p class="content">Earn Dash by powering, securing or developing the Dash Network</p>
|
<p class="content">Earn Dash by powering, securing or developing the Dash network</p>
|
||||||
|
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<a href="#" class="btn-blue-solid">Masternodes</a>
|
<a href="#" class="btn-blue-solid">Masternodes</a>
|
||||||
|
@ -90,19 +92,19 @@
|
||||||
<div class="content">
|
<div class="content">
|
||||||
|
|
||||||
<h2>Setup a Masternode and power Dash's Network</h2>
|
<h2>Setup a Masternode and power Dash's Network</h2>
|
||||||
<p>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.</p>
|
<p>Help power Dash by hosting a masternode or join a shared hosting service. Masternodes operators are rewarded for providing decentralized services to our users.</p>
|
||||||
|
|
||||||
<a href="#" class="btn-blue">Setup a Masternode</a>
|
<a href="#" class="btn-blue">Setup a Masternode</a>
|
||||||
|
|
||||||
|
|
||||||
<h2>Start Mining and Secure Dash's Network</h2>
|
<h2>Start Mining and Secure Dash's Network</h2>
|
||||||
<p>Mine Dash using your computer or dedicated hardware. Miners are rewarded for securing the Dash Network.</p>
|
<p>Mine Dash using your computer or dedicated hardware. Miners are rewarded for securing the Dash network.</p>
|
||||||
|
|
||||||
<a href="#" class="btn-blue">Start Mining</a>
|
<a href="#" class="btn-blue">Start Mining</a>
|
||||||
|
|
||||||
|
|
||||||
<h2>Develop the Network with Blockchain funding</h2>
|
<h2>Develop the Network with Blockchain Funding</h2>
|
||||||
<p>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.</p>
|
<p>Dash's Network funds winning proposals each month for anything that can improve Dash, such as hiring developers, making decisions or integrating Dash payments into more online stores and retail outlets.</p>
|
||||||
|
|
||||||
<a href="#" class="btn-blue">Submit a Proposal</a>
|
<a href="#" class="btn-blue">Submit a Proposal</a>
|
||||||
|
|
||||||
|
@ -175,24 +177,32 @@ Social
|
||||||
|
|
||||||
<!-- Mobile Nav -->
|
<!-- Mobile Nav -->
|
||||||
<div class="overlay" id="overlay">
|
<div class="overlay" id="overlay">
|
||||||
<a href="/"><img src="/assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
<a href="/"><img src="../../assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
||||||
<nav class="overlay-menu">
|
|
||||||
<ul>
|
|
||||||
<li><a href="/">¿Cuál es la Dash</a></li>
|
|
||||||
<li><a href="/get-dash/">Get Dash</a></li>
|
|
||||||
<li><a href="/participate/">Participate</a></li>
|
|
||||||
<li><a href="/currency/">Currency</a></li>
|
|
||||||
<li><a href="/community">Community</a></li>
|
|
||||||
<li><a href="">Blog</a></li>
|
|
||||||
<li><a href="">Project</a></li>
|
|
||||||
|
|
||||||
<li><a href="/participate/">English</a></li>
|
|
||||||
<li><a href="/es/participate/">Español</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="overlay-menu">
|
||||||
|
<ul>
|
||||||
|
<li><a href="../../es/">¿Cuál es la Dash</a></li>
|
||||||
|
<li><a href="../../es/get-dash/">Get Dash</a></li>
|
||||||
|
<li><a href="../../es/participate/">Participate</a></li>
|
||||||
|
<li><a href="../../es/currency/">Currency</a></li>
|
||||||
|
<li><a href="../../es/community">Community</a></li>
|
||||||
|
<li><a href="../../es">Blog</a></li>
|
||||||
|
<li><a href="../../es">Project</a></li>
|
||||||
|
|
||||||
|
<li><a href="../../participate/">English</a></li>
|
||||||
|
<li><a href="../../es/participate/">Español</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script src="/assets/js/full-menu.js"></script>
|
<script src="../../assets/js/full-menu.js"></script>
|
||||||
}
|
}
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
|
@ -2,34 +2,28 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<title>Get Dash — Dash</title>
|
<title>Get Dash — Dash</title>
|
||||||
<meta name="description" content="Download the wallet and get Dash at an exchange.">
|
<meta name="description" content="Download the wallet and get Dash at an exchange.">
|
||||||
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
|
||||||
|
|
||||||
<link rel="apple-touch-icon" sizes="57x57" href="/assets/images/favicon/apple-icon-57x57.png">
|
<link rel="icon" type="image/png" sizes="16x16" href="../assets/img/favicon/favicon-16x16.png">
|
||||||
<link rel="apple-touch-icon" sizes="60x60" href="/assets/images/favicon/apple-icon-60x60.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="72x72" href="/assets/images/favicon/apple-icon-72x72.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="76x76" href="/assets/images/favicon/apple-icon-76x76.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="114x114" href="/assets/images/favicon/apple-icon-114x114.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="120x120" href="/assets/images/favicon/apple-icon-120x120.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="144x144" href="/assets/images/favicon/apple-icon-144x144.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="152x152" href="/assets/images/favicon/apple-icon-152x152.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="/assets/images/favicon/apple-icon-180x180.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="192x192" href="/assets/images/favicon/android-icon-192x192.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="/assets/images/favicon/favicon-32x32.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="96x96" href="/assets/images/favicon/favicon-96x96.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="/assets/images/favicon/favicon-16x16.png">
|
|
||||||
<link rel="manifest" href="/assets/images/favicon/manifest.json">
|
|
||||||
<meta name="msapplication-TileColor" content="#ffffff">
|
<meta name="msapplication-TileColor" content="#ffffff">
|
||||||
<meta name="msapplication-TileImage" content="/assets/images/favicon/ms-icon-144x144.png">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
<meta name="theme-color" content="#ffffff">
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="/assets/css/style.css">
|
<link rel="stylesheet" type="text/css" href="../assets/css/style.css">
|
||||||
<!-- JavaScript -->
|
<!-- JavaScript -->
|
||||||
<script src="//cdn.jsdelivr.net/lodash/4.12.0/lodash.min.js"></script>
|
<script src="//cdn.jsdelivr.net/lodash/4.12.0/lodash.min.js"></script>
|
||||||
<script src="/assets/js/moment.min.js"></script>
|
<script src="../assets/js/moment.min.js"></script>
|
||||||
<script src='//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
|
<script src='//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
|
@ -45,23 +39,31 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Navigation -->
|
<!-- Navigation -->
|
||||||
<div id="top" class="content">
|
|
||||||
<a href="#"><img src="/assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div id="top" class="content">
|
||||||
|
<a href="#"><img src="../assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
||||||
|
|
||||||
<nav class="desktop">
|
<nav class="desktop">
|
||||||
<ul class="menu">
|
<ul class="menu">
|
||||||
<li><a href="/">What is Dash</a></li>
|
<li><a href="../">What is Dash</a></li>
|
||||||
<li><a href="/get-dash/">Get Dash</a></li>
|
<li><a href="../get-dash/">Get Dash</a></li>
|
||||||
<li><a href="/participate/">Participate</a></li>
|
<li><a href="../participate/">Participate</a></li>
|
||||||
<li><a href="/currency/">Currency</a></li>
|
<li><a href="../currency/">Currency</a></li>
|
||||||
<li><a href="/community">Community</a></li>
|
<li><a href="../community">Community</a></li>
|
||||||
<li><a href="">Blog</a></li>
|
<li><a href="..">Blog</a></li>
|
||||||
<li><a href="">Project</a></li>
|
<li><a href="..">Project</a></li>
|
||||||
|
|
||||||
<li><a href="/get-dash/">English</a></li>
|
<li><a href="../get-dash/">English</a></li>
|
||||||
<li><a href="/es/get-dash/">Español</a></li>
|
<li><a href="../es/get-dash/">Español</a></li>
|
||||||
|
|
||||||
<li><a href="" title="Search">S</a></li>
|
<li><a href=".." title="Search">S</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
|
@ -112,7 +114,7 @@
|
||||||
|
|
||||||
|
|
||||||
<h2>Trade Dash on an exchange</h2>
|
<h2>Trade Dash on an exchange</h2>
|
||||||
<p>Trade local currency for Dash on an Exchange Market</p>
|
<p>Trade local currency for Dash on an exchange</p>
|
||||||
|
|
||||||
<a href="#" class="btn-blue">Trade Dash</a>
|
<a href="#" class="btn-blue">Trade Dash</a>
|
||||||
|
|
||||||
|
@ -124,22 +126,22 @@
|
||||||
|
|
||||||
|
|
||||||
<h2>Shop direct with Dash</h2>
|
<h2>Shop direct with Dash</h2>
|
||||||
<p>Instant and anonymous online purchases, direct from your Dash Wallet</p>
|
<p>Instant and anonymous online purchases, direct from your Dash wallet</p>
|
||||||
|
|
||||||
<a href="#" class="btn-blue">More Merchants</a>
|
<a href="#" class="btn-blue">More Merchants</a>
|
||||||
|
|
||||||
|
|
||||||
<h2>Shop at Visa stores</h2>
|
<h2>Shop at Visa stores</h2>
|
||||||
<p>Dash-Visa debit card with no foreign transaction fees & mobile tap & pay</p>
|
<p>Dash-Visa debit card with no foreign transaction fees and mobile "tap & pay"</p>
|
||||||
|
|
||||||
<a href="#" class="btn-blue">Get Shake</a>
|
<a href="#" class="btn-blue">Get Shake</a>
|
||||||
|
|
||||||
|
|
||||||
<h2>Need some Dash?</h2>
|
<h2>Need some Dash?</h2>
|
||||||
<p>Signup to our forum we'll send you some Dash!</p>
|
<p>Signup on our forum we'll send you some Dash!</p>
|
||||||
|
|
||||||
<a href="#" class="btn-blue">Sign up for Dash</a>
|
<a href="#" class="btn-blue">Sign up for Dash</a>
|
||||||
<p>Enter your Email Address</p>
|
<p>Enter Your Email Address</p>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -202,24 +204,32 @@ Social
|
||||||
|
|
||||||
<!-- Mobile Nav -->
|
<!-- Mobile Nav -->
|
||||||
<div class="overlay" id="overlay">
|
<div class="overlay" id="overlay">
|
||||||
<a href="/"><img src="/assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
<a href="/"><img src="../assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
||||||
<nav class="overlay-menu">
|
|
||||||
<ul>
|
|
||||||
<li><a href="/">What is Dash</a></li>
|
|
||||||
<li><a href="/get-dash/">Get Dash</a></li>
|
|
||||||
<li><a href="/participate/">Participate</a></li>
|
|
||||||
<li><a href="/currency/">Currency</a></li>
|
|
||||||
<li><a href="/community">Community</a></li>
|
|
||||||
<li><a href="">Blog</a></li>
|
|
||||||
<li><a href="">Project</a></li>
|
|
||||||
|
|
||||||
<li><a href="/get-dash/">English</a></li>
|
|
||||||
<li><a href="/es/get-dash/">Español</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="overlay-menu">
|
||||||
|
<ul>
|
||||||
|
<li><a href="../">What is Dash</a></li>
|
||||||
|
<li><a href="../get-dash/">Get Dash</a></li>
|
||||||
|
<li><a href="../participate/">Participate</a></li>
|
||||||
|
<li><a href="../currency/">Currency</a></li>
|
||||||
|
<li><a href="../community">Community</a></li>
|
||||||
|
<li><a href="..">Blog</a></li>
|
||||||
|
<li><a href="..">Project</a></li>
|
||||||
|
|
||||||
|
<li><a href="../get-dash/">English</a></li>
|
||||||
|
<li><a href="../es/get-dash/">Español</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script src="/assets/js/full-menu.js"></script>
|
<script src="../assets/js/full-menu.js"></script>
|
||||||
}
|
}
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
108
_site/index.html
108
_site/index.html
|
@ -2,34 +2,28 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<title>Official Website | Private Digital Currency — Dash</title>
|
<title>Official Website | Private Digital Currency — Dash</title>
|
||||||
<meta name="description" content="Dash is Digital Cash">
|
<meta name="description" content="Dash is Digital Cash">
|
||||||
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
|
||||||
|
|
||||||
<link rel="apple-touch-icon" sizes="57x57" href="/assets/images/favicon/apple-icon-57x57.png">
|
<link rel="icon" type="image/png" sizes="16x16" href="./assets/img/favicon/favicon-16x16.png">
|
||||||
<link rel="apple-touch-icon" sizes="60x60" href="/assets/images/favicon/apple-icon-60x60.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="72x72" href="/assets/images/favicon/apple-icon-72x72.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="76x76" href="/assets/images/favicon/apple-icon-76x76.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="114x114" href="/assets/images/favicon/apple-icon-114x114.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="120x120" href="/assets/images/favicon/apple-icon-120x120.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="144x144" href="/assets/images/favicon/apple-icon-144x144.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="152x152" href="/assets/images/favicon/apple-icon-152x152.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="/assets/images/favicon/apple-icon-180x180.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="192x192" href="/assets/images/favicon/android-icon-192x192.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="/assets/images/favicon/favicon-32x32.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="96x96" href="/assets/images/favicon/favicon-96x96.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="/assets/images/favicon/favicon-16x16.png">
|
|
||||||
<link rel="manifest" href="/assets/images/favicon/manifest.json">
|
|
||||||
<meta name="msapplication-TileColor" content="#ffffff">
|
<meta name="msapplication-TileColor" content="#ffffff">
|
||||||
<meta name="msapplication-TileImage" content="/assets/images/favicon/ms-icon-144x144.png">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
<meta name="theme-color" content="#ffffff">
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="/assets/css/style.css">
|
<link rel="stylesheet" type="text/css" href="./assets/css/style.css">
|
||||||
<!-- JavaScript -->
|
<!-- JavaScript -->
|
||||||
<script src="//cdn.jsdelivr.net/lodash/4.12.0/lodash.min.js"></script>
|
<script src="//cdn.jsdelivr.net/lodash/4.12.0/lodash.min.js"></script>
|
||||||
<script src="/assets/js/moment.min.js"></script>
|
<script src="./assets/js/moment.min.js"></script>
|
||||||
<script src='//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
|
<script src='//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
|
@ -45,23 +39,31 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Navigation -->
|
<!-- Navigation -->
|
||||||
<div id="top" class="content">
|
|
||||||
<a href="#"><img src="/assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div id="top" class="content">
|
||||||
|
<a href="#"><img src="./assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
||||||
|
|
||||||
<nav class="desktop">
|
<nav class="desktop">
|
||||||
<ul class="menu">
|
<ul class="menu">
|
||||||
<li><a href="/">What is Dash</a></li>
|
<li><a href="./">What is Dash</a></li>
|
||||||
<li><a href="/get-dash/">Get Dash</a></li>
|
<li><a href="./get-dash/">Get Dash</a></li>
|
||||||
<li><a href="/participate/">Participate</a></li>
|
<li><a href="./participate/">Participate</a></li>
|
||||||
<li><a href="/currency/">Currency</a></li>
|
<li><a href="./currency/">Currency</a></li>
|
||||||
<li><a href="/community">Community</a></li>
|
<li><a href="./community">Community</a></li>
|
||||||
<li><a href="">Blog</a></li>
|
<li><a href=".">Blog</a></li>
|
||||||
<li><a href="">Project</a></li>
|
<li><a href=".">Project</a></li>
|
||||||
|
|
||||||
<li><a href="/">English</a></li>
|
<li><a href="./">English</a></li>
|
||||||
<li><a href="/es/">Español</a></li>
|
<li><a href="./es/">Español</a></li>
|
||||||
|
|
||||||
<li><a href="" title="Search">S</a></li>
|
<li><a href="." title="Search">S</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
|
@ -86,8 +88,8 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<h2>Dash is Digital Cash you can Spend Online</h2>
|
<h2>Dash is Digital Cash You Can Spend Online</h2>
|
||||||
<p>Use Dash to make instant, anonymous payments online or in-store using our secure open-source platform hosted by 1,000's of users around the world.</p>
|
<p>Use Dash to make instant, anonymous payments online or in-store using our secure open-source platform hosted by thousands of users around the world.</p>
|
||||||
|
|
||||||
<a href="#" class="btn-blue">Watch Overview Video</a>
|
<a href="#" class="btn-blue">Watch Overview Video</a>
|
||||||
|
|
||||||
|
@ -103,7 +105,7 @@
|
||||||
|
|
||||||
<h2>Shop direct with Dash</h2>
|
<h2>Shop direct with Dash</h2>
|
||||||
|
|
||||||
Instant and anonymous purchases, direct from your Dash Wallet
|
Instant and anonymous purchases, direct from your Dash wallet
|
||||||
|
|
||||||
<a href="#" class="btn-blue">More Merchants</a>
|
<a href="#" class="btn-blue">More Merchants</a>
|
||||||
<a href="#" class="btn-blue">Become a Merchant</a>
|
<a href="#" class="btn-blue">Become a Merchant</a>
|
||||||
|
@ -111,13 +113,13 @@
|
||||||
|
|
||||||
<h2>Next-Gen Network Architecture</h2>
|
<h2>Next-Gen Network Architecture</h2>
|
||||||
|
|
||||||
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.<br /><br /> 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 two-tier P2P network design that rewards users who run a special kind of node called a masternode and host it 24/7 on dedicated hardware. The network requires that those who run masternodes must provide cryptographic proof that they own 1,000 Dash per masternode. This secures the network against Sybil attacks by making such attacks prohibitively expensive.<br /><br /> 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.
|
||||||
|
|
||||||
<a href="#" class="btn-blue">Learn More</a>
|
<a href="#" class="btn-blue">Learn More</a>
|
||||||
|
|
||||||
<h2>First Self Governing, Self Funding Protocol</h2>
|
<h2>First Self Governing, Self Funding Protocol</h2>
|
||||||
|
|
||||||
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 its own growth and adoption, consensus is guaranteed, and everyone is accountable to the network. Not only that, but an attacker can't game the system without buying over half the currency supply.
|
||||||
|
|
||||||
<a href="#" class="btn-blue">Proposals</a>
|
<a href="#" class="btn-blue">Proposals</a>
|
||||||
|
|
||||||
|
@ -125,13 +127,13 @@
|
||||||
|
|
||||||
<h2>The Fastest Growing Network</h2>
|
<h2>The Fastest Growing Network</h2>
|
||||||
|
|
||||||
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 to 3,900 Masternodes meaning Dash is the only currency that can compete with Bitcoin for transaction processing power and future scalability.
|
||||||
|
|
||||||
<a href="#" class="btn-blue">Network Stats</a>
|
<a href="#" class="btn-blue">Network Stats</a>
|
||||||
|
|
||||||
<h2>Digital Currency Evolution</h2>
|
<h2>Digital Currency Evolution</h2>
|
||||||
|
|
||||||
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 while being as easy to use as PayPal but still fully decentralized. Stay tuned...
|
||||||
|
|
||||||
<a href="#" class="btn-blue">Learn More</a>
|
<a href="#" class="btn-blue">Learn More</a>
|
||||||
|
|
||||||
|
@ -205,24 +207,32 @@ Social
|
||||||
|
|
||||||
<!-- Mobile Nav -->
|
<!-- Mobile Nav -->
|
||||||
<div class="overlay" id="overlay">
|
<div class="overlay" id="overlay">
|
||||||
<a href="/"><img src="/assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
<a href="/"><img src="./assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
||||||
<nav class="overlay-menu">
|
|
||||||
<ul>
|
|
||||||
<li><a href="/">What is Dash</a></li>
|
|
||||||
<li><a href="/get-dash/">Get Dash</a></li>
|
|
||||||
<li><a href="/participate/">Participate</a></li>
|
|
||||||
<li><a href="/currency/">Currency</a></li>
|
|
||||||
<li><a href="/community">Community</a></li>
|
|
||||||
<li><a href="">Blog</a></li>
|
|
||||||
<li><a href="">Project</a></li>
|
|
||||||
|
|
||||||
<li><a href="/">English</a></li>
|
|
||||||
<li><a href="/es/">Español</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="overlay-menu">
|
||||||
|
<ul>
|
||||||
|
<li><a href="./">What is Dash</a></li>
|
||||||
|
<li><a href="./get-dash/">Get Dash</a></li>
|
||||||
|
<li><a href="./participate/">Participate</a></li>
|
||||||
|
<li><a href="./currency/">Currency</a></li>
|
||||||
|
<li><a href="./community">Community</a></li>
|
||||||
|
<li><a href=".">Blog</a></li>
|
||||||
|
<li><a href=".">Project</a></li>
|
||||||
|
|
||||||
|
<li><a href="./">English</a></li>
|
||||||
|
<li><a href="./es/">Español</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script src="/assets/js/full-menu.js"></script>
|
<script src="./assets/js/full-menu.js"></script>
|
||||||
}
|
}
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
|
@ -2,34 +2,28 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<title>Join the Dash Network — Dash</title>
|
<title>Join the Dash Network — Dash</title>
|
||||||
<meta name="description" content="Join the Dash Network">
|
<meta name="description" content="Join the Dash Network">
|
||||||
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
|
||||||
|
|
||||||
<link rel="apple-touch-icon" sizes="57x57" href="/assets/images/favicon/apple-icon-57x57.png">
|
<link rel="icon" type="image/png" sizes="16x16" href="../assets/img/favicon/favicon-16x16.png">
|
||||||
<link rel="apple-touch-icon" sizes="60x60" href="/assets/images/favicon/apple-icon-60x60.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="72x72" href="/assets/images/favicon/apple-icon-72x72.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="76x76" href="/assets/images/favicon/apple-icon-76x76.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="114x114" href="/assets/images/favicon/apple-icon-114x114.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="120x120" href="/assets/images/favicon/apple-icon-120x120.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="144x144" href="/assets/images/favicon/apple-icon-144x144.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="152x152" href="/assets/images/favicon/apple-icon-152x152.png">
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="/assets/images/favicon/apple-icon-180x180.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="192x192" href="/assets/images/favicon/android-icon-192x192.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="/assets/images/favicon/favicon-32x32.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="96x96" href="/assets/images/favicon/favicon-96x96.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="/assets/images/favicon/favicon-16x16.png">
|
|
||||||
<link rel="manifest" href="/assets/images/favicon/manifest.json">
|
|
||||||
<meta name="msapplication-TileColor" content="#ffffff">
|
<meta name="msapplication-TileColor" content="#ffffff">
|
||||||
<meta name="msapplication-TileImage" content="/assets/images/favicon/ms-icon-144x144.png">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
<meta name="theme-color" content="#ffffff">
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="/assets/css/style.css">
|
<link rel="stylesheet" type="text/css" href="../assets/css/style.css">
|
||||||
<!-- JavaScript -->
|
<!-- JavaScript -->
|
||||||
<script src="//cdn.jsdelivr.net/lodash/4.12.0/lodash.min.js"></script>
|
<script src="//cdn.jsdelivr.net/lodash/4.12.0/lodash.min.js"></script>
|
||||||
<script src="/assets/js/moment.min.js"></script>
|
<script src="../assets/js/moment.min.js"></script>
|
||||||
<script src='//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
|
<script src='//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
|
@ -45,23 +39,31 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Navigation -->
|
<!-- Navigation -->
|
||||||
<div id="top" class="content">
|
|
||||||
<a href="#"><img src="/assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div id="top" class="content">
|
||||||
|
<a href="#"><img src="../assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
||||||
|
|
||||||
<nav class="desktop">
|
<nav class="desktop">
|
||||||
<ul class="menu">
|
<ul class="menu">
|
||||||
<li><a href="/">What is Dash</a></li>
|
<li><a href="../">What is Dash</a></li>
|
||||||
<li><a href="/get-dash/">Get Dash</a></li>
|
<li><a href="../get-dash/">Get Dash</a></li>
|
||||||
<li><a href="/participate/">Participate</a></li>
|
<li><a href="../participate/">Participate</a></li>
|
||||||
<li><a href="/currency/">Currency</a></li>
|
<li><a href="../currency/">Currency</a></li>
|
||||||
<li><a href="/community">Community</a></li>
|
<li><a href="../community">Community</a></li>
|
||||||
<li><a href="">Blog</a></li>
|
<li><a href="..">Blog</a></li>
|
||||||
<li><a href="">Project</a></li>
|
<li><a href="..">Project</a></li>
|
||||||
|
|
||||||
<li><a href="/participate/">English</a></li>
|
<li><a href="../participate/">English</a></li>
|
||||||
<li><a href="/es/participate/">Español</a></li>
|
<li><a href="../es/participate/">Español</a></li>
|
||||||
|
|
||||||
<li><a href="" title="Search">S</a></li>
|
<li><a href=".." title="Search">S</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
|
@ -77,7 +79,7 @@
|
||||||
|
|
||||||
<!-- Hero content -->
|
<!-- Hero content -->
|
||||||
<h1 class="content">Join our Network</h1>
|
<h1 class="content">Join our Network</h1>
|
||||||
<p class="content">Earn Dash by powering, securing or developing the Dash Network</p>
|
<p class="content">Earn Dash by powering, securing or developing the Dash network</p>
|
||||||
|
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<a href="#" class="btn-blue-solid">Masternodes</a>
|
<a href="#" class="btn-blue-solid">Masternodes</a>
|
||||||
|
@ -90,19 +92,19 @@
|
||||||
<div class="content">
|
<div class="content">
|
||||||
|
|
||||||
<h2>Setup a Masternode and power Dash's Network</h2>
|
<h2>Setup a Masternode and power Dash's Network</h2>
|
||||||
<p>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.</p>
|
<p>Help power Dash by hosting a masternode or join a shared hosting service. Masternodes operators are rewarded for providing decentralized services to our users.</p>
|
||||||
|
|
||||||
<a href="#" class="btn-blue">Setup a Masternode</a>
|
<a href="#" class="btn-blue">Setup a Masternode</a>
|
||||||
|
|
||||||
|
|
||||||
<h2>Start Mining and Secure Dash's Network</h2>
|
<h2>Start Mining and Secure Dash's Network</h2>
|
||||||
<p>Mine Dash using your computer or dedicated hardware. Miners are rewarded for securing the Dash Network.</p>
|
<p>Mine Dash using your computer or dedicated hardware. Miners are rewarded for securing the Dash network.</p>
|
||||||
|
|
||||||
<a href="#" class="btn-blue">Start Mining</a>
|
<a href="#" class="btn-blue">Start Mining</a>
|
||||||
|
|
||||||
|
|
||||||
<h2>Develop the Network with Blockchain funding</h2>
|
<h2>Develop the Network with Blockchain Funding</h2>
|
||||||
<p>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.</p>
|
<p>Dash's Network funds winning proposals each month for anything that can improve Dash, such as hiring developers, making decisions or integrating Dash payments into more online stores and retail outlets.</p>
|
||||||
|
|
||||||
<a href="#" class="btn-blue">Submit a Proposal</a>
|
<a href="#" class="btn-blue">Submit a Proposal</a>
|
||||||
|
|
||||||
|
@ -175,24 +177,32 @@ Social
|
||||||
|
|
||||||
<!-- Mobile Nav -->
|
<!-- Mobile Nav -->
|
||||||
<div class="overlay" id="overlay">
|
<div class="overlay" id="overlay">
|
||||||
<a href="/"><img src="/assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
<a href="/"><img src="../assets/img/logo-white.png" alt="Dash" class="logo"></a>
|
||||||
<nav class="overlay-menu">
|
|
||||||
<ul>
|
|
||||||
<li><a href="/">What is Dash</a></li>
|
|
||||||
<li><a href="/get-dash/">Get Dash</a></li>
|
|
||||||
<li><a href="/participate/">Participate</a></li>
|
|
||||||
<li><a href="/currency/">Currency</a></li>
|
|
||||||
<li><a href="/community">Community</a></li>
|
|
||||||
<li><a href="">Blog</a></li>
|
|
||||||
<li><a href="">Project</a></li>
|
|
||||||
|
|
||||||
<li><a href="/participate/">English</a></li>
|
|
||||||
<li><a href="/es/participate/">Español</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<nav class="overlay-menu">
|
||||||
|
<ul>
|
||||||
|
<li><a href="../">What is Dash</a></li>
|
||||||
|
<li><a href="../get-dash/">Get Dash</a></li>
|
||||||
|
<li><a href="../participate/">Participate</a></li>
|
||||||
|
<li><a href="../currency/">Currency</a></li>
|
||||||
|
<li><a href="../community">Community</a></li>
|
||||||
|
<li><a href="..">Blog</a></li>
|
||||||
|
<li><a href="..">Project</a></li>
|
||||||
|
|
||||||
|
<li><a href="../participate/">English</a></li>
|
||||||
|
<li><a href="../es/participate/">Español</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script src="/assets/js/full-menu.js"></script>
|
<script src="../assets/js/full-menu.js"></script>
|
||||||
}
|
}
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
BIN
assets/img/favicon/favicon-16x16.png
Normal file
BIN
assets/img/favicon/favicon-16x16.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 890 B |
Loading…
Add table
Add a link
Reference in a new issue