From 794aaeb5140a7e5ba4c8609e21561bb843c32062 Mon Sep 17 00:00:00 2001 From: VitaliyTr Date: Thu, 2 Mar 2017 01:13:46 +0700 Subject: [PATCH] added exchanges page --- _data/exchanges.yml | 18 ++++++++++++++++++ _i18n/en.yml | 21 +++++++++++++++------ _includes/exchanges-list.html | 22 ++++++++++++++++++++++ _includes/hero/exchanges.html | 24 ++++++++++++++++++++++++ exchanges/index.html | 26 ++++++++++++++++++++++++++ src/scss/_buttons.scss | 1 + 6 files changed, 106 insertions(+), 6 deletions(-) create mode 100644 _data/exchanges.yml create mode 100644 _includes/exchanges-list.html create mode 100644 _includes/hero/exchanges.html create mode 100644 exchanges/index.html diff --git a/_data/exchanges.yml b/_data/exchanges.yml new file mode 100644 index 0000000..ca2f1ff --- /dev/null +++ b/_data/exchanges.yml @@ -0,0 +1,18 @@ + +- name: alcurEX + trading_pairs: BTC, MRC + fees: N/A + image: qhoster.png + url: https://alcurex.org/ + +- name: alcurEX + trading_pairs: BTC, MRC + fees: N/A + image: qhoster.png + url: https://alcurex.org/ + +- name: alcurEX + trading_pairs: BTC, MRC + fees: N/A + image: qhoster.png + url: https://alcurex.org/ diff --git a/_i18n/en.yml b/_i18n/en.yml index 7593c87..2ae0108 100755 --- a/_i18n/en.yml +++ b/_i18n/en.yml @@ -1,14 +1,24 @@ # For multiple paragraph content add two line breaks pages: - 404-page: + exchanges: + title: Exchanges + description: Buy Dash at these exchanges and brokers + + hero-heading: Buy Dash + hero-text: | + This lists includes all known exchanges that trade Dash (in alphabetical order), including those with low trading volume. See Market Statistics for more information. + hero-btn: Integrate Dash + hero-getlisted-btn: Get Listed + + disclaimer-text: > + DISCLAIMER: This list is provided for informational purposes only. Services listed here have not been evaluated or endorsed by the Dash developers and no guarantees are made as to the accuracy of this information. Please exercise discretion when using third-party services. + + 404-page: hero-heading: > 404 - - hero-text: > - Page not Found - + hero-text: Page not Found hero-forum-btn: Official Forums hero-discussion-btn: Discussion hero-social-btn: Social Apps @@ -17,7 +27,6 @@ pages: hero-masternodes-btn: Masternodes hero-video-btn: Video & Audio - mining: title: Dash Official Website | Dash Crypto Currency description: Dash is Digital Cash diff --git a/_includes/exchanges-list.html b/_includes/exchanges-list.html new file mode 100644 index 0000000..e656c55 --- /dev/null +++ b/_includes/exchanges-list.html @@ -0,0 +1,22 @@ +
  • + +
    + {% if exchange.image %} +
    + + {{ merchant.name }} + +
    + {% else %} +
    + + {{ merchant.name }} + +
    + {% endif %} +
    + +
    {{ exchange.name }}
    +

    DASH Trading Pairs:: {{ exchange.trading_pairs }}

    +

    Fees:{{ exchange.fees }}

    +
  • diff --git a/_includes/hero/exchanges.html b/_includes/hero/exchanges.html new file mode 100644 index 0000000..939b35c --- /dev/null +++ b/_includes/hero/exchanges.html @@ -0,0 +1,24 @@ +
    +
    + + + +
    + + + {% include nav-desktop.html %} + + +
    +

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

    +

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

    + + +
    + + +
    +
    diff --git a/exchanges/index.html b/exchanges/index.html new file mode 100644 index 0000000..d42c399 --- /dev/null +++ b/exchanges/index.html @@ -0,0 +1,26 @@ +--- +layout: default +title: pages.exchanges.title +description: pages.exchanges.description +--- + +{% include hero/exchanges.html %} + +
    + +
    +
    +
      + {% for exchange in site.data.exchanges %} + {% include exchanges-list.html %} + {% endfor %} +
    +
    +
    + +
    +
    +

    {% t pages.exchanges.disclaimer-text %}

    +
    +
    +
    diff --git a/src/scss/_buttons.scss b/src/scss/_buttons.scss index e3f5199..4bd8c91 100644 --- a/src/scss/_buttons.scss +++ b/src/scss/_buttons.scss @@ -51,6 +51,7 @@ background-color: $color-blue; color: $color-white !important; text-decoration: none; + cursor: pointer; &:hover { } }