diff --git a/assets/img/events/InfoSessions.png b/assets/img/events/InfoSessions.png new file mode 100644 index 0000000000..212f9026e0 Binary files /dev/null and b/assets/img/events/InfoSessions.png differ diff --git a/assets/img/events/SouthKoreaMeetup.png b/assets/img/events/SouthKoreaMeetup.png new file mode 100644 index 0000000000..a16340ebc1 Binary files /dev/null and b/assets/img/events/SouthKoreaMeetup.png differ diff --git a/template/page-events.html.jinja b/template/page-events.html.jinja index 2914bf8770..2580d64ea6 100644 --- a/template/page-events.html.jinja +++ b/template/page-events.html.jinja @@ -94,6 +94,10 @@ +
+ + +
{% set events = [ @@ -430,10 +434,37 @@ "image": "Hackathons.png", "end_date": "August 31, 2023" }, + { "name": "XRPL Grants Info Session: Financial Inclusion Focused", + "description": "Join us for a live information session and Q&A on applying to XRPL Grants Wave 7. This session will provide a general overview of the XRPL Grants application for Wave 7, with a focus on Financial Inclusion projects.", + "type": "info-session", + "link": "https://ripple.zoom.us/webinar/register/WN_YdxeVY9_RJG5SVo-LSip6w#/registration", + "location": "Virtual - Zoom", + "date": "September 05, 2023", + "image": "InfoSessions.png", + "end_date": "September 05, 2023" + }, + { "name": "XRPL South Korea Meetup - XCCESS", + "description": "We are excited to introduce the XRP Ledger XCCESS - an exclusive meetup bringing together the brightest minds, innovators, and enthusiasts from South Korea's blockchain industry. Join us for an engaging experience during the Korea Blockchain Week.", + "type": "meetup", + "link": "https://lu.ma/xrplxccess", + "location": "South Korea - JBK Tower", + "date": "September 06, 2023", + "image": "SouthKoreaMeetup.png", + "end_date": "September 06, 2023" + }, + { "name": "XRPL Grants Info Session: Decentralized Exchange (DEX) Focused", + "description": "Join us for a live information session and Q&A on applying to XRPL Grants Wave 7. This session will provide a general overview of the XRPL Grants application for Wave 7, with a focus on Decentralized Exchange (DEX) projects.", + "type": "info-session", + "link": "https://ripple.zoom.us/webinar/register/WN_ITv-kDuCS3i6UOgBxBe7-A", + "location": "Virtual - Zoom", + "date": "September 06, 2023", + "image": "InfoSessions.png", + "end_date": "September 06, 2023" + }, ] %} - {# Available Types - conference, hackathon, ama, cc, zone, meetup #} + {# Available Types - conference, hackathon, ama, cc, zone, meetup, info-session #} {% set results = categorize_dates(events) %} {% set upcoming = results.upcoming %} @@ -491,6 +522,10 @@ +
+ + +
@@ -559,6 +594,14 @@ $('.zone-upcoming').hide(); } }); + $('#info-session-upcoming').change(function () { + if ($('#info-session-upcoming').is(':checked')) { + $('.info-session-upcoming').show(); + } else { + $('.info-session-upcoming').hide(); + } + }); + $('#conference-past').change(function () { if ($('#conference-past').is(':checked')) { @@ -602,6 +645,13 @@ $('.zone-past').hide(); } }); + $('#info-session-past').change(function () { + if ($('#info-session-past').is(':checked')) { + $('.info-session-past').show(); + } else { + $('.info-session-past').hide(); + } + });