mirror of
https://github.com/monero-project/monero-site.git
synced 2024-11-16 15:58:16 +00:00
added merchant directory
This commit is contained in:
parent
c5e8e5f49a
commit
b0080ba3b7
2 changed files with 49 additions and 5 deletions
24
_data/merchants.yml
Normal file
24
_data/merchants.yml
Normal file
|
@ -0,0 +1,24 @@
|
|||
- category: Exchanges
|
||||
merchants:
|
||||
- name: Poloniex
|
||||
url: https://poloniex.com/exchange/btc_xmr
|
||||
- name: Bittrex
|
||||
url: https://www.bittrex.com/Market/Index?MarketName=BTC-XMR
|
||||
- name: Melotic
|
||||
url: https://www.melotic.com/markets/xmr-btc
|
||||
- name: CoinSwap
|
||||
url: https://coin-swap.net/market/XMR/BTC
|
||||
- category: Services
|
||||
merchants:
|
||||
- name: MyMonero Web-based Wallet
|
||||
url: https://mymonero.com
|
||||
- name: XMR.to Monero to Bitcoin Payment Service
|
||||
url: https://xmr.to
|
||||
- name: CryptoEscrow Escrow Service
|
||||
url: http://www.cryptoescrow.eu
|
||||
- name: MoneroClub OTC Monero Trading
|
||||
url: https://www.moneroclub.com/offers/
|
||||
- category: Gambling
|
||||
merchants:
|
||||
- name: Crypto Coins Dice
|
||||
url: https://www.cryptocoins-dice.com
|
|
@ -9,8 +9,28 @@ icon: "icon_merchants"
|
|||
attribution: "<!-- Icon is based on work by Freepik (http://www.freepik.com) and is licensed under Creative Commons BY 3.0 -->"
|
||||
---
|
||||
|
||||
{:.col-lg-3}
|
||||
### Exchanges
|
||||
- asd
|
||||
- asd
|
||||
- asd
|
||||
If there are any merchants that no longer provide Monero services, or a merchant that wishes to be added, please [open an issue on this website's Github repository](https://github.com/monero-project/monero-site/issues) to alert us.
|
||||
|
||||
<div class="row">
|
||||
|
||||
{% for data_merchants in site.data.merchants %}
|
||||
|
||||
<div class="col-lg-4">
|
||||
|
||||
<h4 class="text-center">{{ data_merchants.category }}</h4>
|
||||
|
||||
<ul>
|
||||
|
||||
{% for data_merchant in data_merchants.merchants %}
|
||||
|
||||
<li><a href="{{ data_merchant.url }}">{{ data_merchant.name }}</a></li>
|
||||
|
||||
{% endfor %}
|
||||
|
||||
</ul>
|
||||
<hr>
|
||||
</div>
|
||||
|
||||
{% endfor %}
|
||||
|
||||
</div>
|
Loading…
Reference in a new issue