From 5cd5e7ea9195c10a53fca0821e91541817a6b480 Mon Sep 17 00:00:00 2001 From: rehrar Date: Mon, 27 Nov 2017 13:31:39 -0700 Subject: [PATCH] Set up initial structure for multilingual workings and community pages - Set up folder structure for the multilingual plugin - Copied the en_strings to en.yml (and es.yml temporarily until translated) as supposed to be - Readied Community pages for translation (initial testing done with Community pages) --- _i18n/en.yml | 97 +++++++++++++++ _i18n/en/community/events.md | 27 +++++ _i18n/en/community/hangouts.md | 96 +++++++++++++++ _i18n/en/community/merchants.md | 26 +++++ _i18n/en/community/sponsorships.md | 96 +++++++++++++++ _i18n/en/community/team.md | 180 ++++++++++++++++++++++++++++ _i18n/es.yml | 97 +++++++++++++++ _i18n/es/community/events.md | 27 +++++ _i18n/es/community/hangouts.md | 1 + _i18n/es/community/merchants.md | 26 +++++ _i18n/es/community/sponsorships.md | 96 +++++++++++++++ _i18n/es/community/team.md | 180 ++++++++++++++++++++++++++++ community/events/index.md | 30 +---- community/hangouts/index.md | 98 +--------------- community/merchants/index.md | 28 +---- community/sponsorships/index.md | 98 +--------------- community/team/index.md | 182 +---------------------------- 17 files changed, 959 insertions(+), 426 deletions(-) create mode 100644 _i18n/en.yml create mode 100644 _i18n/en/community/events.md create mode 100644 _i18n/en/community/hangouts.md create mode 100644 _i18n/en/community/merchants.md create mode 100644 _i18n/en/community/sponsorships.md create mode 100644 _i18n/en/community/team.md create mode 100644 _i18n/es.yml create mode 100644 _i18n/es/community/events.md create mode 100644 _i18n/es/community/hangouts.md create mode 100644 _i18n/es/community/merchants.md create mode 100644 _i18n/es/community/sponsorships.md create mode 100644 _i18n/es/community/team.md diff --git a/_i18n/en.yml b/_i18n/en.yml new file mode 100644 index 00000000..a1c57736 --- /dev/null +++ b/_i18n/en.yml @@ -0,0 +1,97 @@ +global: + date: '%Y/%m/%d' + monero: Monero + getting_started: Getting Started + copyright: Copyright + monero_project: The Monero Project + sitename: getmonero.org, The Monero Project + wiki: Moneropedia + tags: Articles By Tag + wikimeta: on Moneropedia, the open encyclopedia of Monero knowledge + tagsmeta: All Monero blog articles that are tagged + titlemeta: on the home of Monero, a digital currency that is secure, private, and untraceable + terms: Terms + privacy: Privacy + copyright: Copyright + edit: Edit This Page +menu: + forum: Forum + blog: Blog + knowledge_base: Knowledge Base + community: Community + bitcointalk: Bitcointalk Thread + reddit: Reddit + allblog: All Blog Posts + devdiaries: Dev Diaries + missives: Monero Missives + uncategorised: Uncategorized + choose: How to Choose a Monero Client + running: How to Run a Monero Node + donations: Donating and Sponsorships + contribute: Contributing to Monero + downloads: All Monero Downloads + github: GitHub + merchants: Merchants and Services Directory + accepting: Accepting Monero Payments + about: About Monero + people: The People Behind Monero + userguides: User Guides + developerguides: Developer Guides + vrp: Vulnerability Response Process + goals: Design & Development Goals + openalias: The OpenAlias Project + lab: Monero Research Lab + alternative: Alternative Clients + projects: External Projects + stackexchange: StackExchange Q&A + slack: Slack Chat + telegram: Telegram Chat + irc: IRC on Freenode + irc-general: "#monero (General)" + irc-development: "#monero-dev (Development)" + irc-trading: "#monero-otc (OTC Trading)" + irc-markets: "#monero-markets (Markets)" + irc-mining: "#monero-pools (Mining)" +index: + page_title: "Monero - secure, private, untraceable" + what_is_1: What is + what_is_2: " ?" + what_is_orange_block: "Monero is a secure, private, untraceable currency that is open-source and freely available for anyone to use." + what_is_text_block_1: "With Monero, you are your own bank; You have complete control over your funds. With Monero, your accounts and transactions are kept private." + what_is_text_block_2: "Want to find out more? An overview of Monero's main features are below. If you'd like to try Monero for yourself the" + what_is_text_block_3: "Getting Started" + what_is_text_block_4: "section is an excellent launching point." + news: News + the_latest: The Latest + private: Private + secure: Secure + untraceable: Untraceable + private_text: "Monero uses hidden amounts, origins and destinations of @transactions. This means that nobody knows how much you're sending in a transaction except you. This ensures that your purchases and other transfers remain private by default." + untraceable_text: "By taking advantage of @ring-signatures, Monero allows you to send and receive funds privately. Even though your transactions are publicly verifiable on the @blockchain, transactions use digital signatures that specify a group of signers such that the person verifying can’t tell which person actually produced the signature. Because it's ambiguous which funds have been spent, your transaction remains private and cannot be traced back to you." + secure_text: "Monero uses a distributed peer-to-peer @consensus network and every transaction is cryptographically signed. Your coins are safely stored on the @blockchain and can be restored at any time with the use of a 25 word @mnemonic-seed on any computer with the Monero software. Wallet files are encrypted on disk and locked with a passphrase, rendering them useless if stolen." + how_do_i_1: "How do I " + how_do_i_2: " ?" + get_started: get started + get_started_1: "The fastest way to start using Monero is with a web @account manager such as " + mymonero: "MyMonero" + get_started_2: "." + get_started_3: "Alternatively, if you would like to run a [full Monero node](/getting-started/running) you can download the client and a kick-starter @blockchain (to bring your local client up to speed) using the download link on the right." + where_can_i: Where can I + download_1: download + download_2: " ?" + different_os: "Need it for a different operating system?" + all_downloads: View all available downloads here + c_download: Download + monero_for: Monero for + latest_blockchain: Latest @Blockchain +blog: + title_1: All + title_2: Blog + title_3: Posts + tagged: Tagged under + author: Posted by + date: Posted at + forum: Click here to join the discussion for this entry on the Monero Forum +tags: + all: Articles by Tag + notags: There are no posts for this tag. diff --git a/_i18n/en/community/events.md b/_i18n/en/community/events.md new file mode 100644 index 00000000..f24325d3 --- /dev/null +++ b/_i18n/en/community/events.md @@ -0,0 +1,27 @@ +
+Monero people are always down to get together and have a good time. Check below to see Monero-related events happening in your area. +
+ +{% for toplevel in site.data.events %} + +
+
+
+
+
+

{{toplevel.event}}

+

Where

+

{{toplevel.where}}

+

When

+

{{toplevel.when}}

+

Description

+

{{toplevel.description}}

+

Link

+ {{toplevel.link}} +
+
+
+
+
+ +{%endfor%} \ No newline at end of file diff --git a/_i18n/en/community/hangouts.md b/_i18n/en/community/hangouts.md new file mode 100644 index 00000000..bea95be8 --- /dev/null +++ b/_i18n/en/community/hangouts.md @@ -0,0 +1,96 @@ +
+The Monero community is diverse and varied. We come from all over, but we definitely have some places we like to hang out together. You'll find most of them below. Join us! +
+ +
+
+
    +
  • + +
  • +
  • + +
  • +
  • + +
  • +
  • + +
  • +
+
+ +
+
+ +
+
+
+
+
+

Workgroup Resources

+
+
+
+

In an effort to support organic workgroups, Monero has several resources that the community can use to meet and plan projects. Mattermost even has relays into the most popular Monero-related IRC channels.

+
+
+
+

Slack

+
+ +
+

Taiga

+
+
+
+
+
+
+

IRC Channels

+
+
+
+

The Monero community utilizes a lot of IRC channels that each serve different purposes. Some to work, and some just to hang out. You'll find the more popular ones below.

+
+
+ {% for channel in site.data.irc %} +
+ #{{ channel.channel }} +

{{ channel.description }}

+
+ {% endfor %} +
+
+
+
+ + + + + +
+
+ +
diff --git a/_i18n/en/community/merchants.md b/_i18n/en/community/merchants.md new file mode 100644 index 00000000..07047110 --- /dev/null +++ b/_i18n/en/community/merchants.md @@ -0,0 +1,26 @@ +
+Merchants of all kinds have come to value the financial privacy that Monero brings. Below is a list of the merchants that we know of that currently accept Monero for their goods and services. If a company no longer accepts Monero or you would like your business to be listed, please [open a GitHub issue and let us know](https://github.com/monero-project/monero-site/issues). +
+
+{% for toplevel in site.data.merchants %} +
+
+

{{toplevel.category}}

+
+ {% assign sortedMerchants = toplevel.merchants | sort: 'name' %} + {% for merchants in sortedMerchants %} + + {% endfor %} +
+
+
+{%endfor%} + + +
+ +
+*Please note: these links are being provided as a convenience and for informational purposes only; they do not constitute an endorsement by the Monero community of any products, services or opinions of the corporations or organizations or individuals listed. The Monero community bears no responsibility for the accuracy, legality, or content of these external sites. Contact the external site for answers to questions regarding its content. As always, caveat emptor ("buyer beware"); you are responsible for doing your own research. Always use judgement when making online purchases.* +
diff --git a/_i18n/en/community/sponsorships.md b/_i18n/en/community/sponsorships.md new file mode 100644 index 00000000..e742f5a1 --- /dev/null +++ b/_i18n/en/community/sponsorships.md @@ -0,0 +1,96 @@ +
+The following businesses have supported the Monero Project in its goal to bring financial privacy to the world. We couldn't be more grateful for their contributions. If you would like to sponsor the Monero Project and be listed on this page, please send an email to dev@getmonero.org. +
+ +
+
+
+ + + +
+
+ + + + + +
+
+
+
+
+
+

Navicat

+ +
+
+
+
+
+
+
+
+

Symas

+ +
+
+
+
+
+
+
\ No newline at end of file diff --git a/_i18n/en/community/team.md b/_i18n/en/community/team.md new file mode 100644 index 00000000..a654cb9a --- /dev/null +++ b/_i18n/en/community/team.md @@ -0,0 +1,180 @@ +
+ +
+
+
+
+ + +

Core

+
+
+ {% for toplevel in site.data.team %} + {% if toplevel.area == "Core" %} + {% for member in toplevel.member %} +
+
+
+

{{member.name}}

+
+
+

{{member.email}}

+
+
+ {% if member.github %} + + {%endif%} + {% if member.twitter %} + + {%endif%} + {% if member.reddit %} + + {%endif%} +
+
+
+ {%endfor%} + {%endif%} + {%endfor%} +
+
+ + +

Developers

+
+
+
+
+
+

The Monero Project has had well over 200 contributors over the life of the project. For a complete list, please see the OpenHub contributors page. Below you'll find some individuals that have gone above and beyond for Monero.

+
+
+
+
+
+ {% for toplevel in site.data.team %} + {% if toplevel.area == "Developers" %} + {% for member in toplevel.member %} +
+
+
+

{{member.name}}

+
+
+ {% if member.github %} + + {%endif%} + {% if member.twitter %} + + {%endif%} + {% if member.reddit %} + + {%endif%} +
+
+
+ {%endfor%} + {%endif%} + {%endfor%} +
+
+ + +

Community

+
+
+ {% for toplevel in site.data.team %} + {% if toplevel.area == "Community" %} + {% for member in toplevel.member %} +
+
+
+

{{member.name}}

+
+
+ {% if member.github %} + + {%endif%} + {% if member.twitter %} + + {%endif%} + {% if member.reddit %} + + {%endif%} +
+
+
+ {%endfor%} + {%endif%} + {%endfor%} +
+
+ + +

Research Lab

+
+
+ {% for toplevel in site.data.team %} + {% if toplevel.area == "Monero Research Lab" %} + {% for member in toplevel.member %} +
+
+
+

{{member.name}}

+
+
+ {% if member.github %} + + {%endif%} + {% if member.twitter %} + + {%endif%} + {% if member.reddit %} + + {%endif%} +
+
+
+ {%endfor%} + {%endif%} + {%endfor%} +
+
+ + +

Special Thanks

+
+
+ {% for toplevel in site.data.team %} + {% if toplevel.area == "Special Thanks" %} + {% for member in toplevel.member %} +
+
+
+

{{member.name}}

+
+
+ {% if member.github %} + + {%endif%} + {% if member.twitter %} + + {%endif%} + {% if member.reddit %} + + {%endif%} +
+
+
+ {%endfor%} + {%endif%} + {%endfor%} +
+
+
+
+
+
+ + +
\ No newline at end of file diff --git a/_i18n/es.yml b/_i18n/es.yml new file mode 100644 index 00000000..a1c57736 --- /dev/null +++ b/_i18n/es.yml @@ -0,0 +1,97 @@ +global: + date: '%Y/%m/%d' + monero: Monero + getting_started: Getting Started + copyright: Copyright + monero_project: The Monero Project + sitename: getmonero.org, The Monero Project + wiki: Moneropedia + tags: Articles By Tag + wikimeta: on Moneropedia, the open encyclopedia of Monero knowledge + tagsmeta: All Monero blog articles that are tagged + titlemeta: on the home of Monero, a digital currency that is secure, private, and untraceable + terms: Terms + privacy: Privacy + copyright: Copyright + edit: Edit This Page +menu: + forum: Forum + blog: Blog + knowledge_base: Knowledge Base + community: Community + bitcointalk: Bitcointalk Thread + reddit: Reddit + allblog: All Blog Posts + devdiaries: Dev Diaries + missives: Monero Missives + uncategorised: Uncategorized + choose: How to Choose a Monero Client + running: How to Run a Monero Node + donations: Donating and Sponsorships + contribute: Contributing to Monero + downloads: All Monero Downloads + github: GitHub + merchants: Merchants and Services Directory + accepting: Accepting Monero Payments + about: About Monero + people: The People Behind Monero + userguides: User Guides + developerguides: Developer Guides + vrp: Vulnerability Response Process + goals: Design & Development Goals + openalias: The OpenAlias Project + lab: Monero Research Lab + alternative: Alternative Clients + projects: External Projects + stackexchange: StackExchange Q&A + slack: Slack Chat + telegram: Telegram Chat + irc: IRC on Freenode + irc-general: "#monero (General)" + irc-development: "#monero-dev (Development)" + irc-trading: "#monero-otc (OTC Trading)" + irc-markets: "#monero-markets (Markets)" + irc-mining: "#monero-pools (Mining)" +index: + page_title: "Monero - secure, private, untraceable" + what_is_1: What is + what_is_2: " ?" + what_is_orange_block: "Monero is a secure, private, untraceable currency that is open-source and freely available for anyone to use." + what_is_text_block_1: "With Monero, you are your own bank; You have complete control over your funds. With Monero, your accounts and transactions are kept private." + what_is_text_block_2: "Want to find out more? An overview of Monero's main features are below. If you'd like to try Monero for yourself the" + what_is_text_block_3: "Getting Started" + what_is_text_block_4: "section is an excellent launching point." + news: News + the_latest: The Latest + private: Private + secure: Secure + untraceable: Untraceable + private_text: "Monero uses hidden amounts, origins and destinations of @transactions. This means that nobody knows how much you're sending in a transaction except you. This ensures that your purchases and other transfers remain private by default." + untraceable_text: "By taking advantage of @ring-signatures, Monero allows you to send and receive funds privately. Even though your transactions are publicly verifiable on the @blockchain, transactions use digital signatures that specify a group of signers such that the person verifying can’t tell which person actually produced the signature. Because it's ambiguous which funds have been spent, your transaction remains private and cannot be traced back to you." + secure_text: "Monero uses a distributed peer-to-peer @consensus network and every transaction is cryptographically signed. Your coins are safely stored on the @blockchain and can be restored at any time with the use of a 25 word @mnemonic-seed on any computer with the Monero software. Wallet files are encrypted on disk and locked with a passphrase, rendering them useless if stolen." + how_do_i_1: "How do I " + how_do_i_2: " ?" + get_started: get started + get_started_1: "The fastest way to start using Monero is with a web @account manager such as " + mymonero: "MyMonero" + get_started_2: "." + get_started_3: "Alternatively, if you would like to run a [full Monero node](/getting-started/running) you can download the client and a kick-starter @blockchain (to bring your local client up to speed) using the download link on the right." + where_can_i: Where can I + download_1: download + download_2: " ?" + different_os: "Need it for a different operating system?" + all_downloads: View all available downloads here + c_download: Download + monero_for: Monero for + latest_blockchain: Latest @Blockchain +blog: + title_1: All + title_2: Blog + title_3: Posts + tagged: Tagged under + author: Posted by + date: Posted at + forum: Click here to join the discussion for this entry on the Monero Forum +tags: + all: Articles by Tag + notags: There are no posts for this tag. diff --git a/_i18n/es/community/events.md b/_i18n/es/community/events.md new file mode 100644 index 00000000..f24325d3 --- /dev/null +++ b/_i18n/es/community/events.md @@ -0,0 +1,27 @@ +
+Monero people are always down to get together and have a good time. Check below to see Monero-related events happening in your area. +
+ +{% for toplevel in site.data.events %} + +
+
+
+
+
+

{{toplevel.event}}

+

Where

+

{{toplevel.where}}

+

When

+

{{toplevel.when}}

+

Description

+

{{toplevel.description}}

+

Link

+ {{toplevel.link}} +
+
+
+
+
+ +{%endfor%} \ No newline at end of file diff --git a/_i18n/es/community/hangouts.md b/_i18n/es/community/hangouts.md new file mode 100644 index 00000000..4123698d --- /dev/null +++ b/_i18n/es/community/hangouts.md @@ -0,0 +1 @@ +

No

\ No newline at end of file diff --git a/_i18n/es/community/merchants.md b/_i18n/es/community/merchants.md new file mode 100644 index 00000000..07047110 --- /dev/null +++ b/_i18n/es/community/merchants.md @@ -0,0 +1,26 @@ +
+Merchants of all kinds have come to value the financial privacy that Monero brings. Below is a list of the merchants that we know of that currently accept Monero for their goods and services. If a company no longer accepts Monero or you would like your business to be listed, please [open a GitHub issue and let us know](https://github.com/monero-project/monero-site/issues). +
+
+{% for toplevel in site.data.merchants %} +
+
+

{{toplevel.category}}

+
+ {% assign sortedMerchants = toplevel.merchants | sort: 'name' %} + {% for merchants in sortedMerchants %} + + {% endfor %} +
+
+
+{%endfor%} + + +
+ +
+*Please note: these links are being provided as a convenience and for informational purposes only; they do not constitute an endorsement by the Monero community of any products, services or opinions of the corporations or organizations or individuals listed. The Monero community bears no responsibility for the accuracy, legality, or content of these external sites. Contact the external site for answers to questions regarding its content. As always, caveat emptor ("buyer beware"); you are responsible for doing your own research. Always use judgement when making online purchases.* +
diff --git a/_i18n/es/community/sponsorships.md b/_i18n/es/community/sponsorships.md new file mode 100644 index 00000000..d2d4d7b0 --- /dev/null +++ b/_i18n/es/community/sponsorships.md @@ -0,0 +1,96 @@ +
+The following businesses have supported the Monero Project in its goal to bring financial privacy to the world. We couldn't be more grateful for their contributions. If you would like to sponsor the Monero Project and be listed on this page, please send an email to dev@getmonero.org. +
+ +
+
+
+ + + +
+
+ + + + + +
+
+
+
+
+
+

Navicat

+ +
+
+
+
+
+
+
+
+

Symas

+ +
+
+
+
+
+
+
\ No newline at end of file diff --git a/_i18n/es/community/team.md b/_i18n/es/community/team.md new file mode 100644 index 00000000..a654cb9a --- /dev/null +++ b/_i18n/es/community/team.md @@ -0,0 +1,180 @@ +
+ +
+
+
+
+ + +

Core

+
+
+ {% for toplevel in site.data.team %} + {% if toplevel.area == "Core" %} + {% for member in toplevel.member %} +
+
+
+

{{member.name}}

+
+
+

{{member.email}}

+
+
+ {% if member.github %} + + {%endif%} + {% if member.twitter %} + + {%endif%} + {% if member.reddit %} + + {%endif%} +
+
+
+ {%endfor%} + {%endif%} + {%endfor%} +
+
+ + +

Developers

+
+
+
+
+
+

The Monero Project has had well over 200 contributors over the life of the project. For a complete list, please see the OpenHub contributors page. Below you'll find some individuals that have gone above and beyond for Monero.

+
+
+
+
+
+ {% for toplevel in site.data.team %} + {% if toplevel.area == "Developers" %} + {% for member in toplevel.member %} +
+
+
+

{{member.name}}

+
+
+ {% if member.github %} + + {%endif%} + {% if member.twitter %} + + {%endif%} + {% if member.reddit %} + + {%endif%} +
+
+
+ {%endfor%} + {%endif%} + {%endfor%} +
+
+ + +

Community

+
+
+ {% for toplevel in site.data.team %} + {% if toplevel.area == "Community" %} + {% for member in toplevel.member %} +
+
+
+

{{member.name}}

+
+
+ {% if member.github %} + + {%endif%} + {% if member.twitter %} + + {%endif%} + {% if member.reddit %} + + {%endif%} +
+
+
+ {%endfor%} + {%endif%} + {%endfor%} +
+
+ + +

Research Lab

+
+
+ {% for toplevel in site.data.team %} + {% if toplevel.area == "Monero Research Lab" %} + {% for member in toplevel.member %} +
+
+
+

{{member.name}}

+
+
+ {% if member.github %} + + {%endif%} + {% if member.twitter %} + + {%endif%} + {% if member.reddit %} + + {%endif%} +
+
+
+ {%endfor%} + {%endif%} + {%endfor%} +
+
+ + +

Special Thanks

+
+
+ {% for toplevel in site.data.team %} + {% if toplevel.area == "Special Thanks" %} + {% for member in toplevel.member %} +
+
+
+

{{member.name}}

+
+
+ {% if member.github %} + + {%endif%} + {% if member.twitter %} + + {%endif%} + {% if member.reddit %} + + {%endif%} +
+
+
+ {%endfor%} + {%endif%} + {%endfor%} +
+
+
+
+
+
+ + +
\ No newline at end of file diff --git a/community/events/index.md b/community/events/index.md index 2b3580be..72ddc106 100644 --- a/community/events/index.md +++ b/community/events/index.md @@ -1,32 +1,6 @@ --- layout: custom title: Events +permalink: /community/events/index.html --- - -
-Monero people are always down to get together and have a good time. Check below to see Monero-related events happening in your area. -
- -{% for toplevel in site.data.events %} - -
-
-
-
-
-

{{toplevel.event}}

-

Where

-

{{toplevel.where}}

-

When

-

{{toplevel.when}}

-

Description

-

{{toplevel.description}}

-

Link

- {{toplevel.link}} -
-
-
-
-
- -{%endfor%} \ No newline at end of file +{% tf community/events.md %} \ No newline at end of file diff --git a/community/hangouts/index.md b/community/hangouts/index.md index 32e5796c..7455cd30 100644 --- a/community/hangouts/index.md +++ b/community/hangouts/index.md @@ -1,100 +1,6 @@ --- layout: custom title: Hangouts +permalink: /community/hangouts/index.html --- -
-The Monero community is diverse and varied. We come from all over, but we definitely have some places we like to hang out together. You'll find most of them below. Join us! -
- -
-
-
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
  • - -
  • -
-
- -
-
- -
-
-
-
-
-

Workgroup Resources

-
-
-
-

In an effort to support organic workgroups, Monero has several resources that the community can use to meet and plan projects. Mattermost even has relays into the most popular Monero-related IRC channels.

-
-
-
-

Slack

-
- -
-

Taiga

-
-
-
-
-
-
-

IRC Channels

-
-
-
-

The Monero community utilizes a lot of IRC channels that each serve different purposes. Some to work, and some just to hang out. You'll find the more popular ones below.

-
-
- {% for channel in site.data.irc %} -
- #{{ channel.channel }} -

{{ channel.description }}

-
- {% endfor %} -
-
-
-
- - - - - -
-
- -
+{% tf community/hangouts.md %} \ No newline at end of file diff --git a/community/merchants/index.md b/community/merchants/index.md index fc2a0b9a..a656c97c 100644 --- a/community/merchants/index.md +++ b/community/merchants/index.md @@ -1,30 +1,6 @@ --- layout: custom title: Merchants & Services +permalink: /community/merchants/index.html --- -
-Merchants of all kinds have come to value the financial privacy that Monero brings. Below is a list of the merchants that we know of that currently accept Monero for their goods and services. If a company no longer accepts Monero or you would like your business to be listed, please [open a GitHub issue and let us know](https://github.com/monero-project/monero-site/issues). -
-
-{% for toplevel in site.data.merchants %} -
-
-

{{toplevel.category}}

-
- {% assign sortedMerchants = toplevel.merchants | sort: 'name' %} - {% for merchants in sortedMerchants %} - - {% endfor %} -
-
-
-{%endfor%} - - -
- -
-*Please note: these links are being provided as a convenience and for informational purposes only; they do not constitute an endorsement by the Monero community of any products, services or opinions of the corporations or organizations or individuals listed. The Monero community bears no responsibility for the accuracy, legality, or content of these external sites. Contact the external site for answers to questions regarding its content. As always, caveat emptor ("buyer beware"); you are responsible for doing your own research. Always use judgement when making online purchases.* -
+{% tf community/merchants.md %} \ No newline at end of file diff --git a/community/sponsorships/index.md b/community/sponsorships/index.md index 9166939f..94b95ca2 100644 --- a/community/sponsorships/index.md +++ b/community/sponsorships/index.md @@ -1,101 +1,7 @@ --- layout: custom title: Sponsorships +permalink: /community/sponsorships/index.html --- -
-The following businesses have supported the Monero Project in its goal to bring financial privacy to the world. We couldn't be more grateful for their contributions. If you would like to sponsor the Monero Project and be listed on this page, please send an email to dev@getmonero.org. -
- -
-
-
- - - -
-
- - - - - -
-
-
-
-
-
-

Navicat

- -
-
-
-
-
-
-
-
-

Symas

- -
-
-
-
-
-
-
+{% tf community/sponsorships.md %} \ No newline at end of file diff --git a/community/team/index.md b/community/team/index.md index 04a993a1..db081948 100644 --- a/community/team/index.md +++ b/community/team/index.md @@ -1,184 +1,6 @@ --- layout: custom title: Monero Team +permalink: /community/team/index.html --- -
- -
-
-
-
- - -

Core

-
-
- {% for toplevel in site.data.team %} - {% if toplevel.area == "Core" %} - {% for member in toplevel.member %} -
-
-
-

{{member.name}}

-
-
-

{{member.email}}

-
-
- {% if member.github %} - - {%endif%} - {% if member.twitter %} - - {%endif%} - {% if member.reddit %} - - {%endif%} -
-
-
- {%endfor%} - {%endif%} - {%endfor%} -
-
- - -

Developers

-
-
-
-
-
-

The Monero Project has had well over 200 contributors over the life of the project. For a complete list, please see the OpenHub contributors page. Below you'll find some individuals that have gone above and beyond for Monero.

-
-
-
-
-
- {% for toplevel in site.data.team %} - {% if toplevel.area == "Developers" %} - {% for member in toplevel.member %} -
-
-
-

{{member.name}}

-
-
- {% if member.github %} - - {%endif%} - {% if member.twitter %} - - {%endif%} - {% if member.reddit %} - - {%endif%} -
-
-
- {%endfor%} - {%endif%} - {%endfor%} -
-
- - -

Community

-
-
- {% for toplevel in site.data.team %} - {% if toplevel.area == "Community" %} - {% for member in toplevel.member %} -
-
-
-

{{member.name}}

-
-
- {% if member.github %} - - {%endif%} - {% if member.twitter %} - - {%endif%} - {% if member.reddit %} - - {%endif%} -
-
-
- {%endfor%} - {%endif%} - {%endfor%} -
-
- - -

Research Lab

-
-
- {% for toplevel in site.data.team %} - {% if toplevel.area == "Monero Research Lab" %} - {% for member in toplevel.member %} -
-
-
-

{{member.name}}

-
-
- {% if member.github %} - - {%endif%} - {% if member.twitter %} - - {%endif%} - {% if member.reddit %} - - {%endif%} -
-
-
- {%endfor%} - {%endif%} - {%endfor%} -
-
- - -

Special Thanks

-
-
- {% for toplevel in site.data.team %} - {% if toplevel.area == "Special Thanks" %} - {% for member in toplevel.member %} -
-
-
-

{{member.name}}

-
-
- {% if member.github %} - - {%endif%} - {% if member.twitter %} - - {%endif%} - {% if member.reddit %} - - {%endif%} -
-
-
- {%endfor%} - {%endif%} - {%endfor%} -
-
-
-
-
-
- - -
\ No newline at end of file +{% tf community/team.md %} \ No newline at end of file