mirror of
https://github.com/monero-project/monero-site.git
synced 2024-11-17 08:18:03 +00:00
a22d7eda73
- Deleted flippin' template directories (unnecessary now) - Moved all cussin' HTML to root files instead of in _i18n folder (except for guides) - Replaced all freakin' strings with liquid translation tags - Added all Kevin' strings for each language already merged to their respective .yml files - 40 seconds of testing before sending PR Signed-off-by: rehrar <rehrar@tuta.io>
35 lines
No EOL
1.1 KiB
Markdown
35 lines
No EOL
1.1 KiB
Markdown
---
|
|
layout: custom
|
|
title: titles.merchants
|
|
permalink: /community/merchants/index.html
|
|
---
|
|
<div class="text-center container description">
|
|
<p>{% t merchants.intro1 %}<a href="https://github.com/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-4 col-sm-6 col-xs-12">
|
|
<a href="{{merchants.url}}">{{merchants.name}}</a>
|
|
</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://github.com/monero-project/monero-site/blob/master/README.md">README</a>.</p>
|
|
</div> |