mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-27 23:25:51 +00:00
Merge branch 'master' of https://github.com/JakeatRipple/xrpl-dev-portal into feat-ambassadors
This commit is contained in:
@@ -53,7 +53,7 @@
|
||||
{% if target.lang=="ja" %}
|
||||
<link href="{{currentpage.prefix}}assets/css/fonts-ja.css" rel="stylesheet" />
|
||||
{% endif %}
|
||||
<link href="{{currentpage.prefix}}assets/css/devportal2022-v4.css" rel="stylesheet" />
|
||||
<link href="{{currentpage.prefix}}assets/css/devportal2022-v5.css" rel="stylesheet" />
|
||||
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
||||
|
||||
|
||||
@@ -17,62 +17,53 @@
|
||||
|
||||
{% block main %}
|
||||
|
||||
<div class="position-relative">
|
||||
<img src="./img/backgrounds/community-magenta.svg" class="landing-bg" id="community-magenta">
|
||||
</div>
|
||||
|
||||
<section class="py-26 text-center">
|
||||
<div class="col-lg-5 mx-auto text-center">
|
||||
<section class="text-center" id="community-heading">
|
||||
|
||||
<div class="d-lg-block d-none">
|
||||
<img class="parallax one" width="220px" height="160px" src="./assets/img/community/community-one@2x.png" >
|
||||
<img class="parallax two" width="120px" height="160px" src="./assets/img/community/community-two@2x.png" >
|
||||
<img class="parallax three" width="102px" height="102px" src="./assets/img/community/community-three@2x.png" >
|
||||
<img class="parallax four" width="120px" height="160px" src="./assets/img/community/community-four@2x.png" >
|
||||
<img class="parallax five" width="216px" height="160px" src="./assets/img/community/community-five@2x.png" >
|
||||
</div>
|
||||
|
||||
<div class="col-lg-6 mx-auto text-left text-md-center">
|
||||
<div class="d-flex flex-column-reverse">
|
||||
<h1 class="mb-0">{% trans %}Participate in the XRPL Community{% endtrans %}</h1>
|
||||
<h6 class="eyebrow mb-3">{% trans %}Join and Contribute{% endtrans %}</h6>
|
||||
<h1 class="mb-0">{% trans %}A Global Community of Builders and Innovators{% endtrans %}</h1>
|
||||
<h6 class="eyebrow mb-3">{% trans %}The XRPL Community{% endtrans %}</h6>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<div class="position-relative d-none-sm">
|
||||
<img src="./img/backgrounds/community-purple.svg" id="community-purple">
|
||||
</div>
|
||||
|
||||
|
||||
<section class="container-new py-26" id="run-a-network-node">
|
||||
<!-- Join conversation -->
|
||||
<section class="container-new" id="find-us-on-platforms">
|
||||
<div class="d-flex flex-column-reverse col-sm-8 p-0">
|
||||
<h3 class="h4 h2-sm">{% trans %}Run an XRP Ledger Network Node{% endtrans %}</h3>
|
||||
<h6 class="eyebrow mb-3">{% trans %}Contribute to Consensus{% endtrans %}</h6>
|
||||
</div>
|
||||
{% set curated_cards = [
|
||||
"the-rippled-server.html",
|
||||
"install-rippled.html",
|
||||
"run-rippled-as-a-validator.html",
|
||||
"troubleshoot-the-rippled-server.html"
|
||||
] %}
|
||||
{% include 'component-curated-cards.html.jinja' %}
|
||||
</section><!--/#run-a-network-node-->
|
||||
|
||||
<section class="container-new py-26" id="find-us-on-platforms">
|
||||
<div class="d-flex flex-column-reverse col-sm-8 p-0">
|
||||
<h3 class="h4 h2-sm">{% trans %}Find us on the platforms below{% endtrans %}</h3>
|
||||
<h3 class="h4 h2-sm">{% trans %}Find the community on the platforms below{% endtrans %}</h3>
|
||||
<h6 class="eyebrow mb-3">{% trans %}Join the Conversation{% endtrans %}</h6>
|
||||
</div>
|
||||
|
||||
{% set platforms = [
|
||||
{ "name": "Twitter",
|
||||
"id": "twitter",
|
||||
"link": "https://twitter.com/XRPLF/"},
|
||||
{ "name": "Discord",
|
||||
"id": "discord",
|
||||
"link": "https://discord.gg/427qqMYwHh"},
|
||||
{ "name": "YouTube",
|
||||
"id": "youtube",
|
||||
"link": "https://www.youtube.com/channel/UC6zTJdNCBI-TKMt5ubNc_Gg"},
|
||||
{ "name": "GitHub",
|
||||
"id": "github",
|
||||
"link": "https://github.com/XRPLF/xrpl-dev-portal",
|
||||
"imgclasses": "invertible-img"},
|
||||
{ "name": "Twitch",
|
||||
"id": "twitch",
|
||||
"link": "https://www.twitch.tv/ripplexdev"},
|
||||
{ "name": "Stack Overflow",
|
||||
"id": "stack-overflow",
|
||||
"link": "https://stackoverflow.com/questions/tagged/xrp"},
|
||||
{ "name": "Twitter",
|
||||
"id": "twitter",
|
||||
"link": "https://twitter.com/XRPLF/"},
|
||||
] %}
|
||||
<div class="row row-cols-2 row-cols-lg-4 card-deck">
|
||||
{% for plat in platforms %}
|
||||
<a class="card" href="{{plat.link}}">
|
||||
<a class="card mb-10" href="{{plat.link}}" target="_blank">
|
||||
<div class="card-body">
|
||||
<div class="circled-logo"><img id="platform-{{plat.id}}" alt="(logo)" {% if plat.imgclasses %}class="{{plat.imgclasses}}"{% endif %}/></div>
|
||||
<h4 class="card-title h5">{{plat.name}}</h4>
|
||||
@@ -82,7 +73,168 @@
|
||||
{% endfor %}
|
||||
</div>
|
||||
</section>
|
||||
<section class="container-new py-26">
|
||||
|
||||
|
||||
<!-- Contribute -->
|
||||
<section class="container-new" id="run-a-network-node">
|
||||
<div class="card-grid card-grid-2xN">
|
||||
<div class="col d-none d-lg-block align-self-center">
|
||||
<div class="mt-10" id="networkNode"></div>
|
||||
</div>
|
||||
|
||||
<div class="col pt-lg-5">
|
||||
<div class="d-flex flex-column-reverse mb-8 pl-0">
|
||||
<h2 class="h4 h2-sm">{% trans %}Run an XRP Ledger network node{% endtrans %}</h2>
|
||||
<h6 class="eyebrow mb-3">{% trans %}Contribute to Consensus{% endtrans %}</h6>
|
||||
</div>
|
||||
|
||||
<div class="col d-lg-none d-block">
|
||||
<div class="mt-10" id="networkNode-small"></div>
|
||||
</div>
|
||||
|
||||
<div class="pt-2 pt-lg-5 card-grid card-grid-2xN text-cards">
|
||||
{% set curated_links = [
|
||||
"the-rippled-server.html",
|
||||
"run-rippled-as-a-validator.html",
|
||||
"install-rippled.html",
|
||||
"troubleshoot-the-rippled-server.html"
|
||||
] %}
|
||||
{% for cc in curated_links %}
|
||||
{% set page = pages|selectattr("html", "defined_and_equalto", cc)|first %}
|
||||
<div class="text-card">
|
||||
<a class="btn-arrow" href="{{currentpage.prefix}}{{page.html}}">{% if page.top_nav_name is defined %}{{page.top_nav_name}}{% else %}{{page.name}}{% endif %}</a>
|
||||
<p class="mt-3 mb-0">{{page.blurb}}</p>
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<!-- Grants -->
|
||||
<section class="container-new" id="xrpl-grants">
|
||||
<div class="card-grid card-grid-2xN">
|
||||
<div class="col pr-2">
|
||||
<div class="d-flex flex-column-reverse">
|
||||
<h2 class="h4 h2-sm">{% trans %}Apply for funding for your next XRPL project{% endtrans %}</h2>
|
||||
<h6 class="eyebrow mb-3">{% trans %}XRPL Grants{% endtrans %}</h6>
|
||||
</div>
|
||||
<p class="mb-lg-3 py-lg-4 pt-4 mb-0">{% trans %}The XRPL Grants program funds select open-source projects that contribute to the growing XRP Ledger community.{% endtrans %}</p>
|
||||
|
||||
<div class="d-lg-block d-none">
|
||||
<div class="mb-4 pb-3" id="xrplGrantsDark"></div>
|
||||
<a class="btn btn-primary btn-arrow" target="_blank" href="https://xrplgrants.org/">{% trans %}Learn More{% endtrans %}</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col">
|
||||
<div class="mb-4 pb-3 mb-lg-3 pb-lg-5">
|
||||
<h6 class="eyebrow mb-2">{% trans %}Awarded in a single grant{% endtrans %}</h6>
|
||||
<img src="./assets/img/community/community-grants-1.svg" class="w-100">
|
||||
</div>
|
||||
<div class="mb-4 pb-3 mb-lg-3 pb-lg-5">
|
||||
<h6 class="eyebrow mb-2">{% trans %}Distributed to grant recipients{% endtrans %}</h6>
|
||||
<img src="./assets/img/community/community-grants-2.svg" class="w-100">
|
||||
</div>
|
||||
<div class="mb-4 pb-3 mb-lg-3 pb-lg-5">
|
||||
<h6 class="eyebrow mb-2">{% trans %}Open-source projects funded {% endtrans %}</h6>
|
||||
<img src="./assets/img/community/community-grants-3.svg" class="w-100">
|
||||
</div>
|
||||
|
||||
<div class="d-lg-none d-block mt-4 pt-3">
|
||||
<div class="mb-4 pb-3" id="xrplGrantsDark-small"></div>
|
||||
<a class="btn btn-primary btn-arrow" target="_blank" href="https://xrplgrants.org/">{% trans %}Learn More{% endtrans %}</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<!-- Events -->
|
||||
<section class="container-new" id="xrpl-events">
|
||||
<div class="card-grid card-grid-2xN ">
|
||||
|
||||
<div class="col pr-2 d-lg-block d-none">
|
||||
<!-- Large. 3 image in col -->
|
||||
<div class="d-flex flex-row h-100">
|
||||
<div class=" pr-1 mr-3 align-self-start">
|
||||
<img src="./assets/img/community/community-events-apex-small@2x.png" class="w-100">
|
||||
<p class="bold text-light mt-3">{% trans %}Welcome to Apex 2021{% endtrans %}</p>
|
||||
</div>
|
||||
<div class=" px-1 mx-3 align-self-center">
|
||||
<img src="./assets/img/community/community-events-meetup-small@2x.png" class="w-100">
|
||||
<p class="bold text-light mt-3">{% trans %}XRPL Community Meetup{% endtrans %}</p>
|
||||
</div>
|
||||
<div class=" pl-1 ml-3 align-self-end">
|
||||
<img src="./assets/img/community/community-events-hackathon-small@2x.png" class="w-100">
|
||||
<p class="bold text-light mt-3">{% trans %}XRPL Hackathon 2022{% endtrans %}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col pt-5">
|
||||
<div class="d-flex flex-column-reverse mb-lg-2 pl-0">
|
||||
<h2 class="h4 h2-sm">{% trans %}Check out global events across the XRPL community{% endtrans %}</h2>
|
||||
<h6 class="eyebrow mb-3">{% trans %}XRPL Events{% endtrans %}</h6>
|
||||
</div>
|
||||
<p class="mb-3 py-4">{% trans %}Meet the XRPL community at meetups, hackathons, conferences, and more across global regions.{% endtrans %}</p>
|
||||
|
||||
<!-- Mobile. 3 inline images. -->
|
||||
<div class="col pr-2 d-lg-none d-block">
|
||||
|
||||
<div class="mb-4 pb-3 mb-lg-3 pb-lg-5">
|
||||
<img src="./assets/img/community/community-events-apex@2x.png" class="w-100">
|
||||
<h6 class="mt-3">{% trans %}Welcome to Apex 2021{% endtrans %}</h6>
|
||||
</div>
|
||||
<div class="mb-4 pb-3 mb-lg-3 pb-lg-5">
|
||||
<img src="./assets/img/community/community-events-meetup@2x.png" class="w-100">
|
||||
<h6 class="mt-3">{% trans %}XRPL Community Meetup{% endtrans %}</h6>
|
||||
</div>
|
||||
<div class="mb-4 pb-3 mb-lg-3 pb-lg-5">
|
||||
<img src="./assets/img/community/community-events-hackathon@2x.png" class="w-100">
|
||||
<h6 class="mt-3">{% trans %}XRPL Hackathon 2022{% endtrans %}</h6>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div >
|
||||
<a class="btn btn-primary btn-arrow" target="_blank" href="/events.html">{% trans %}View All Events{% endtrans %}</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<!-- Careers -->
|
||||
<section class="container-new" id="xrpl-careers">
|
||||
<div class="card-grid card-grid-2xN">
|
||||
|
||||
<div class="col pr-2 d-lg-block d-none">
|
||||
<div class="mb-4 pb-3" id="careersDark"></div>
|
||||
</div>
|
||||
|
||||
<div class="col pt-5">
|
||||
<div class="d-flex flex-column-reverse mb-lg-2 pl-0">
|
||||
<h2 class="h4 h2-sm">{% trans %}Discover your next career opportunity in the XRPL community{% endtrans %}</h2>
|
||||
<h6 class="eyebrow mb-3">{% trans %}XRPL Careers{% endtrans %}</h6>
|
||||
</div>
|
||||
<p class="mb-3 py-4">{% trans %}Teams across the XRPL community are looking for talented individuals to help build their next innovation.{% endtrans %}</p>
|
||||
|
||||
<div class="d-lg-none d-block">
|
||||
<div class="mb-4 pb-3" id="careersDark-small"></div>
|
||||
</div>
|
||||
<div class="d-lg-block">
|
||||
<a class="btn btn-primary btn-arrow" target="_blank" href="https://jobs.xrpl.org/jobs">{% trans %}View Open Roles{% endtrans %}</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<section class="container-new">
|
||||
<div class="col-md-6 offset-md-3 p-6-sm p-10-until-sm br-8 cta-card">
|
||||
<img src="./img/backgrounds/cta-community-purple.svg" class="d-none-sm cta cta-top-left">
|
||||
<img src="./img/backgrounds/cta-community-green.svg" class="cta cta-bottom-right">
|
||||
@@ -99,6 +251,94 @@
|
||||
{% endblock %}
|
||||
|
||||
|
||||
{% block endbody %}
|
||||
<script type="text/javascript" src="{{currentpage.prefix}}assets/js/bodymovin.min.js"></script>
|
||||
|
||||
<!-- Light version for network node looks ok for both light/dark.-->
|
||||
<!-- Dark version for other two and using filter invert and adjust brightness for light mode -->
|
||||
<script type="text/javascript" src="{{currentpage.prefix}}assets/js/community/network-node-light.json"></script>
|
||||
<script type="text/javascript" src="{{currentpage.prefix}}assets/js/community/XRPL-grants-dark.json"></script>
|
||||
<script type="text/javascript" src="{{currentpage.prefix}}assets/js/community/careers-dark.json"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
function networkNodeAnimation(){
|
||||
bodymovin.loadAnimation({
|
||||
container: document.getElementById('networkNode'),
|
||||
renderer: 'svg',
|
||||
loop: true,
|
||||
autoplay: true,
|
||||
animationData: networkNodeLight
|
||||
});
|
||||
};
|
||||
|
||||
function networkNodeSmallAnimation(){
|
||||
bodymovin.loadAnimation({
|
||||
container: document.getElementById('networkNode-small'),
|
||||
renderer: 'svg',
|
||||
loop: true,
|
||||
autoplay: true,
|
||||
animationData: networkNodeLight
|
||||
});
|
||||
};
|
||||
|
||||
|
||||
function xrplGrantsAnimation(){
|
||||
bodymovin.loadAnimation({
|
||||
container: document.getElementById('xrplGrantsDark'),
|
||||
renderer: 'svg',
|
||||
loop: true,
|
||||
autoplay: true,
|
||||
animationData: xrplGrantsDark
|
||||
});
|
||||
};
|
||||
|
||||
function xrplGrantsSmallAnimation(){
|
||||
bodymovin.loadAnimation({
|
||||
container: document.getElementById('xrplGrantsDark-small'),
|
||||
renderer: 'svg',
|
||||
loop: true,
|
||||
autoplay: true,
|
||||
animationData: xrplGrantsDark
|
||||
});
|
||||
};
|
||||
|
||||
|
||||
function careersAnimation(){
|
||||
bodymovin.loadAnimation({
|
||||
container: document.getElementById('careersDark'),
|
||||
renderer: 'svg',
|
||||
loop: true,
|
||||
autoplay: true,
|
||||
animationData: careersDark
|
||||
});
|
||||
};
|
||||
|
||||
function careersSmallAnimation(){
|
||||
bodymovin.loadAnimation({
|
||||
container: document.getElementById('careersDark-small'),
|
||||
renderer: 'svg',
|
||||
loop: true,
|
||||
autoplay: true,
|
||||
animationData: careersDark
|
||||
});
|
||||
};
|
||||
|
||||
careersAnimation();
|
||||
careersSmallAnimation();
|
||||
|
||||
|
||||
xrplGrantsAnimation();
|
||||
xrplGrantsSmallAnimation();
|
||||
|
||||
|
||||
networkNodeSmallAnimation();
|
||||
networkNodeAnimation();
|
||||
|
||||
</script>
|
||||
|
||||
{% endblock %}
|
||||
|
||||
|
||||
{% block analytics %}
|
||||
<script type="application/javascript">
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
|
||||
@@ -101,69 +101,14 @@
|
||||
</div>
|
||||
|
||||
{% set upcoming = [
|
||||
{ "name": "NYC Meetup/Hackathon XRPL Celebration",
|
||||
"id": "upcoming-xrpl-new-york",
|
||||
"description": "The NYC/XRP community and Dev Null Productions cordially invites you to attend our 10th meetup, being held in celebration of the on-going XRPL Hackathon, at the unique and artistic TALS studio in Midtown Manhattan.",
|
||||
"type": "meetup-upcoming",
|
||||
"link": "https://www.meetup.com/NYC-XRP/events/284485901/",
|
||||
"location": "NYC, NY",
|
||||
"date": "March 30, 2022",
|
||||
"image": "event-meetup-new-york@2x.jpg"},
|
||||
|
||||
{ "name": "XRPL Community Meetup: London",
|
||||
"id": "upcoming-xrpl-london",
|
||||
"description": "Join for an evening of programming and networking with members of the XRPL Community in London, co-organised by Peerkat - the NFT platform for creators on the XRPL.",
|
||||
"type": "meetup-upcoming",
|
||||
"link": "https://www.meetup.com/xrp-ledger-london-community/events/283536458/",
|
||||
"location": "IDEALondon",
|
||||
"date": "March 31, 2022",
|
||||
"image": "event-meetup-london.png"},
|
||||
|
||||
{ "name": "XRPL Community Meetup: Toronto",
|
||||
"id": "upcoming-xrpl-toronto",
|
||||
"description": "Join us for our first Toronto meetup with an evening of programming and networking with other members of the XRP Ledger Community with special guests from the XUMM Wallet and ARK PLATES teams!",
|
||||
"type": "meetup-upcoming",
|
||||
"link": "https://www.meetup.com/xrpl-toronto-community-meetup/events/284177188/",
|
||||
"location": "Toronto",
|
||||
"date": "March 31, 2022",
|
||||
"image": "event-meetup-toronto@2x.jpg"},
|
||||
|
||||
{ "name": "XRPL Community Meetup: San Diego",
|
||||
"id": "upcoming-xrpl-san-diego",
|
||||
"description": "Get together with other San Diego-based members of the XRP Ledger Community to network and discuss all things XRPL! Join us for our second San Diego XRPL Meetup.",
|
||||
"type": "meetup-upcoming",
|
||||
"link": "https://www.meetup.com/xrp-ledger-san-diego-community/events/284663355/",
|
||||
"location": "San Diego, CA",
|
||||
"date": "April 1st 2022",
|
||||
"image": "event-meetup-san-diego@2x.jpg"},
|
||||
|
||||
{ "name": "XRPL Community Meetup: Irvine LA",
|
||||
"id": "upcoming-xrpl-irvine",
|
||||
"description": "Get together with other LA-based members of the XRP Ledger Community to network and discuss all things XRPL.",
|
||||
"type": "meetup-upcoming",
|
||||
"link": "https://www.meetup.com/xrp-ledger-la-community-meetup/events/284824635/",
|
||||
"location": "UC Irvine, CA",
|
||||
"date": "April 3rd 2022",
|
||||
"image": "event-meetup-irvine@2x.jpg"},
|
||||
|
||||
{ "name": "XRPL Community Meetup: Miami #2",
|
||||
"id": "upcoming-xrpl-miami-2",
|
||||
"description": "We're excited to host our second Miami meetup for XRP Ledger community members on April 6th from 6-8pm, featuring Marco Neri, Developer Advocate at Ripple, who will join us to give a presentation on the XRP Ledger.",
|
||||
"type": "meetup-upcoming",
|
||||
"link": "https://www.meetup.com/xrp-ledger-miami-community/events/284463736/",
|
||||
"location": "The LAB Miami, FL",
|
||||
"date": "April 6th 2022",
|
||||
"image": "event-meetup-miami@2x.jpg"},
|
||||
|
||||
{ "name": "XRPL Community Meetup: Abu Dhabi",
|
||||
"id": "upcoming-xrpl-abu-dhabi",
|
||||
"description": "Get together with other Abu Dhabi-based members of the XRP Ledger Community to network and discuss all things XRPL!",
|
||||
"type": "meetup-upcoming",
|
||||
"link": "https://www.meetup.com/xrp-ledger-dubai-community/events/284776939/",
|
||||
"location": "NYU Abu Dhabi, Building A6",
|
||||
"date": "April 14th 2022",
|
||||
"image": "event-meetup-abu-dhabi@2x.jpg"},
|
||||
|
||||
{ "name": "XRPL Hackathon: Creating Real World Impact",
|
||||
"description": "Build apps to improve lives in the real world using any of the SDKs and APIs for the XRP Ledger",
|
||||
"type": "hackathon-upcoming",
|
||||
"link": "https://xrplimpact.devpost.com/",
|
||||
"location": "Virtual",
|
||||
"date": "May 26 - July 11",
|
||||
"image": "event-hack-impact@2x.png"},
|
||||
|
||||
] %}
|
||||
<div class="row row-cols-1 row-cols-lg-3 card-deck mt-2">
|
||||
@@ -214,6 +159,7 @@
|
||||
"location": "Virtual",
|
||||
"date": "September 13–October 6, 2021",
|
||||
"image": "event-hack-2021.svg"},
|
||||
|
||||
{ "name": "XRPL Community Meetup: San Diego",
|
||||
"description": "The first official Meetup hosted by the XRPL Community. Community members in Southern California gathered around a firepit and shared their experiences with the XRPL.",
|
||||
"type": "meetup-past",
|
||||
@@ -221,6 +167,7 @@
|
||||
"location": "San Diego, CA",
|
||||
"date": "Saturday, November 20, 2021",
|
||||
"image": "event-meetup-san-diego@2x.jpg"},
|
||||
|
||||
{ "name": "XRPL Community Meetup: Atlanta",
|
||||
"description": "The inaugural Meetup in the Southeast region of the United States got community members excited to meet like-minded individuals in their area.",
|
||||
"type": "meetup-past",
|
||||
@@ -228,6 +175,7 @@
|
||||
"location": "Atlanta, GA",
|
||||
"date": "Saturday, November 27, 2021",
|
||||
"image": "event-meetup-alanta@2x.jpg"},
|
||||
|
||||
{ "name": "XRPL Community Meetup: San Francisco",
|
||||
"description": "Community members in the Bay Area with diverse backgrounds in technology and beyond met in downtown San Francisco.",
|
||||
"type": "meetup-past",
|
||||
@@ -235,6 +183,7 @@
|
||||
"location": "San Francisco, CA",
|
||||
"date": "Monday, November 29, 2021",
|
||||
"image": "event-meetup-san-francisco@2x.jpg"},
|
||||
|
||||
{ "name": "XRPL Community Meetup: Miami",
|
||||
"description": "One of the biggest Meetups held so far, this was the first of an ongoing series of local XRPL Community Meetup events in Miami. ",
|
||||
"type": "meetup-past",
|
||||
@@ -242,6 +191,7 @@
|
||||
"location": "Miami, FL ",
|
||||
"date": "Thursday, December 9, 2021",
|
||||
"image": "event-meetup-miami@2x.jpg"},
|
||||
|
||||
{ "name": "XRPL Community Meetup: Nashville",
|
||||
"description": "Nashville-based members of the XRPL Community came together to network, learn, share ideas, and form new partnerships. ",
|
||||
"type": "meetup-past",
|
||||
@@ -249,6 +199,7 @@
|
||||
"location": "Nashville, TN",
|
||||
"date": "Saturday, December 18, 2021",
|
||||
"image": "event-meetup-nashville@2x.jpg"},
|
||||
|
||||
{ "name": "XRPL Hackathon: New Year, New NFT",
|
||||
"id": "upcoming-xrpl-hackathon-new-year",
|
||||
"description": "Build functional NFTs on the XRPL that span across a full range of use cases and showcase your project in this hackathon. Submissions have a chance to win prizes from a total prize pool of $50,000 in XRP.",
|
||||
@@ -257,6 +208,60 @@
|
||||
"location": "Virtual",
|
||||
"date": "January 31 - March 14, 2022",
|
||||
"image": "event-hack-new-year.svg"},
|
||||
|
||||
{ "name": "NYC Meetup/Hackathon XRPL Celebration",
|
||||
"id": "upcoming-xrpl-new-york",
|
||||
"description": "The NYC/XRP community and Dev Null Productions cordially invites you to attend our 10th meetup, being held in celebration of the on-going XRPL Hackathon, at the unique and artistic TALS studio in Midtown Manhattan.",
|
||||
"type": "meetup-past",
|
||||
"link": "https://www.meetup.com/NYC-XRP/events/284485901/",
|
||||
"location": "NYC, NY",
|
||||
"date": "March 30, 2022",
|
||||
"image": "event-meetup-new-york@2x.jpg"},
|
||||
|
||||
{ "name": "XRPL Community Meetup: London",
|
||||
"id": "upcoming-xrpl-london",
|
||||
"description": "Join for an evening of programming and networking with members of the XRPL Community in London, co-organised by Peerkat - the NFT platform for creators on the XRPL.",
|
||||
"type": "meetup-past",
|
||||
"link": "https://www.meetup.com/xrp-ledger-london-community/events/283536458/",
|
||||
"location": "IDEALondon",
|
||||
"date": "March 31, 2022",
|
||||
"image": "event-meetup-london.png"},
|
||||
|
||||
{ "name": "XRPL Community Meetup: Toronto",
|
||||
"id": "upcoming-xrpl-toronto",
|
||||
"description": "Join us for our first Toronto meetup with an evening of programming and networking with other members of the XRP Ledger Community with special guests from the XUMM Wallet and ARK PLATES teams!",
|
||||
"type": "meetup-past",
|
||||
"link": "https://www.meetup.com/xrpl-toronto-community-meetup/events/284177188/",
|
||||
"location": "Toronto",
|
||||
"date": "March 31, 2022",
|
||||
"image": "event-meetup-toronto@2x.jpg"},
|
||||
|
||||
{ "name": "XRPL Community Meetup: San Diego",
|
||||
"id": "upcoming-xrpl-san-diego",
|
||||
"description": "Get together with other San Diego-based members of the XRP Ledger Community to network and discuss all things XRPL! Join us for our second San Diego XRPL Meetup.",
|
||||
"type": "meetup-past",
|
||||
"link": "https://www.meetup.com/xrp-ledger-san-diego-community/events/284663355/",
|
||||
"location": "San Diego, CA",
|
||||
"date": "April 1st 2022",
|
||||
"image": "event-meetup-san-diego@2x.jpg"},
|
||||
|
||||
{ "name": "XRPL Community Meetup: Irvine LA",
|
||||
"id": "upcoming-xrpl-irvine",
|
||||
"description": "Get together with other LA-based members of the XRP Ledger Community to network and discuss all things XRPL.",
|
||||
"type": "meetup-past",
|
||||
"link": "https://www.meetup.com/xrp-ledger-la-community-meetup/events/284824635/",
|
||||
"location": "UC Irvine, CA",
|
||||
"date": "April 3rd 2022",
|
||||
"image": "event-meetup-irvine@2x.jpg"},
|
||||
|
||||
{ "name": "XRPL Community Meetup: Miami #2",
|
||||
"id": "upcoming-xrpl-miami-2",
|
||||
"description": "We're excited to host our second Miami meetup for XRP Ledger community members on April 6th from 6-8pm, featuring Marco Neri, Developer Advocate at Ripple, who will join us to give a presentation on the XRP Ledger.",
|
||||
"type": "meetup-past",
|
||||
"link": "https://www.meetup.com/xrp-ledger-miami-community/events/284463736/",
|
||||
"location": "The LAB Miami, FL",
|
||||
"date": "April 6th 2022",
|
||||
"image": "event-meetup-miami@2x.jpg"},
|
||||
] %}
|
||||
<div class="row row-cols-1 row-cols-lg-3 card-deck mb-0 mt-2 ">
|
||||
{% for event in past|reverse %}
|
||||
|
||||
Reference in New Issue
Block a user