monero-site/community/merchants/index.md
c1761e7bca Large scale website redesign update thing
- Updated lots and lots and lots of CSS
- Changed all link colors from orange to black and underlined
- Made site more accessible across the board
- Seriously, look at all the pages and tell me it's not awesomer
- Updated relevant HTML in pages to accomodate
- Changed en.yml Developer Guides translated string to yes (why was it not already?)
- Added images to the Using Monero page for wicked sick purposes
2019-01-18 20:18:55 -07:00

36 lines
1.2 KiB
Markdown

---
layout: custom
title: titles.merchants
permalink: /community/merchants/index.html
---
{% t global.lang_tag %}
<div class="text-center container description">
<p>{% t merchants.intro1 %}<a href="https://repo.getmonero.org/monero-project/monero-site/issues"> {% t merchants.intro2 %}</a></p>
</div>
<div class="merchants">
{% for toplevel in site.data.merchants %}
<div class="container full" id="{{toplevel.id}}">
<div class="info-block">
<h2>{{toplevel.category}}</h2>
<div class="row">
{% assign sortedMerchants = toplevel.merchants | sort: 'name' %}
{% for merchants in sortedMerchants %}
<div class="col-md-6 col-sm-6 col-xs-12">
<p><a href="{{merchants.url}}">{{merchants.name}}</a></p>
</div>
{% endfor %}
</div>
</div>
</div>
{%endfor%}
</div>
<div class="text-center container description">
<p>
<em>{% t merchants.disclaimer %}</em>
</p>
</div>
<div class="untranslated {% t merchants.translated %}">
<p>{% t global.untranslated %} <a class="untranslated-link" href="https://repo.getmonero.org/monero-project/monero-site/blob/master/README.md#140-how-to-translate-a-page">README</a>.</p>
</div>