Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adds new events to community and events page #2303

Merged
merged 1 commit into from
Dec 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions template/page-community.html.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,29 @@ var events = {{[
"end_date": "October 17, 2023",
"start_date": "October 17, 2023",
},
{
"name": _("Paris Blockchain Week"),
"description": _("Paris Blockchain Week is Europe's biggest blockchain & digital assets event that covers all aspects of blockchain technology."),
"type": "conference",
"link": "https://www.parisblockchainweek.com/",
"location": _("Paris, France"),
"date": "April 9 - 12, 2024",
"image": "Conference.png",
"end_date": "April 12, 2024",
"start_date": "April 12, 2024",
},
{
"name": _("Consensus"),
"description": _("Join us at Consensus! This event is the world's largest, longest-running and most influential gathering that brings together all sides of the cryptocurrency, blockchain and Web3 community."),
"type": "conference",
"link": "https://consensus2024.coindesk.com/sponsors/",
"location": _("Austin, Texas"),
"date": "May 29 - June 1, 2024",
"image": "Conference.png",
"end_date": "June 1, 2024",
"start_date": "June 1, 2024",
},

]}};
$(document).ready(() => {
// Function to convert string date to Date object
Expand Down
53 changes: 50 additions & 3 deletions tool/filter_categorize_dates.py
Original file line number Diff line number Diff line change
Expand Up @@ -433,17 +433,64 @@
"image": "paris.png",
"end_date": "November 28, 2023"
},
# { "name": "XRP Ledger Zone ETHDenver",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd prefer not to clutter up files with commented-out draft data.

# "description": "XRPL Zone: your all-in-one location for creating and collaborating on XRP Ledger (XRPL) projects. Details coming soon!",
# "type": "zone",
# "link": "https://xrplzone-consensus.splashthat.com/", need to update
# "location": "Denver, Colorado",
# "date": "April 27, 2023", need to update
# "image": "XRPLZone.png",
# "end_date": "April 27, 2023" need to update
# },
{ "name": "RippleX’s Research: <br/> Stanford Engineering Campus Research Initiatives",
"description": "Learn more about RippleX’s ongoing research projects on the XRP Ledger, addressing issues like frontrunning defense, the significance of threshold signatures, and challenges in cross-chain communication, including the construction of bridges on XRPL.",
"type": "conference",
"link": "https://stanford.zoom.us/meeting/register/tJ0vcOCorjMpGdPnS4_aBkWhphhnzld7sUKr",
"location": "Virtual",
"date": "December 12, 2023 4:15pm PST",
"image": "Conference.png",
"end_date": "December 12, 2023",
},

{ "name": "Paris Blockchain Week",
"description": "Paris Blockchain Week is Europe's biggest blockchain & digital assets event that covers all aspects of blockchain technology.",
"type": "conference",
"link": "https://www.parisblockchainweek.com/",
"location": "Paris, France",
"date": "April 9 - 12, 2024",
"image": "Conference.png",
"end_date": "April 12, 2024",
},

{ "name": "Consensus",
"description": "Join us at Consensus! This event is the world's largest, longest-running and most influential gathering that brings together all sides of the cryptocurrency, blockchain and Web3 community.",
"type": "conference",
"link": "https://consensus2024.coindesk.com/sponsors/",
"location": "Austin, Texas",
"date": "May 29 - June 1, 2024",
"image": "Conference.png",
"end_date": "June 1, 2024",
},
{ "name": "Permissionless",
"description": "Come see XRP Ledger at Permissionless: the world's largest DeFi conference.",
"type": "conference",
"link": "https://blockworks.co/event/permissionless-iii/home",
"location": "Salt Lake City, Utah",
"date": "October 9 - 11, 2024",
"image": "Conference.png",
"end_date": "October 11, 2024",
},

{
"name": "XRPL Toronto Meetup Community - Celebrate with Us!",
"description": "To connect the blockchain community, showcase campus ambassador projects, and celebrate the year's progress with a holiday theme.",
"type": "meetup",
"link": "https://www.meetup.com/xrpl-toronto-community-meetup/events/294766059",
"location": "Downtown, Toronto",
"date": "December 7th, 6pm - 9pm",
"date": "TBD",
"image": "[email protected]",
"end_date": "December 7, 2023"
"end_date": "January 31, 2024"
},

]
def categorize_dates():
past = []
Expand Down
Loading