Skip to content
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
50 changes: 50 additions & 0 deletions content/community-calendar/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
+++
title = "Community Calendar"
+++

Here's an overview of what's happening across the scverse community: our regular open
community meetings and upcoming events such as hackathons and conferences. The calendar
below stays in sync with our Google Calendar, so it's always up to date. You can also
subscribe to it and follow along from your own calendar app.

<iframe
src="https://calendar.google.com/calendar/embed?src=c_f704cd855e47d4b6279687e0346f1ac60e6c46dc9c3cd00c62635499aa1489b9%40group.calendar.google.com&ctz=Europe%2FBerlin"
style="border: 0; width: 100%; height: 600px;"
frameborder="0"
scrolling="no"
title="scverse community calendar"
></iframe>

## Book a meeting

The **spatialdata** developer sync is a bookable, biweekly meeting that runs
_only if someone books it_ — grab an open slot at least 24 hours ahead and
you'll get a calendar invite with the video-call link. It's a developer-focused
space to discuss ongoing work and onboard new contributors; no prior
contribution needed. Wrong time zone? Reach out in `#spatialdata-dev` on
[Zulip](https://scverse.zulip.com).

<iframe
src="https://calendar.google.com/calendar/appointments/schedules/AcZssZ0sHFEayogaadgiQFniMZ5r1lXeS3OzKkw95bosieOYQjcFTDQ6b_P9A8PvJDCi4XwQYugBIQEN?gv=true"
style="border: 0; width: 100%; height: 600px;"
frameborder="0"
scrolling="no"
title="Book a meeting with the spatialdata maintainers"
></iframe>

## Subscribe to the calendar

Add the scverse community calendar to your own calendar to get all our meetings and events automatically:

- [Add to Google Calendar](https://calendar.google.com/calendar/render?cid=c_f704cd855e47d4b6279687e0346f1ac60e6c46dc9c3cd00c62635499aa1489b9%40group.calendar.google.com)
- [Subscribe via iCal](https://calendar.google.com/calendar/ical/c_f704cd855e47d4b6279687e0346f1ac60e6c46dc9c3cd00c62635499aa1489b9%40group.calendar.google.com/public/basic.ics) (Apple Calendar, Outlook, Thunderbird, and other apps)

## Open community meeting

Scverse community meetings happen **every two weeks on Tuesday at 6pm CET** and are open
to everyone! If you are new to scverse, these meetings are a great way to get to know the
people behind the project.

**Agenda**, **next dates**, **meeting notes** and the **Zoom link** are available from the
[meeting document](https://hackmd.io/VfVLKb3ETGKN2j_7tn8ZJQ?view). See our
[events page](/events) for past and upcoming hackathons and conferences.
22 changes: 22 additions & 0 deletions layouts/community-calendar/list.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!doctype html>
<html>
<head>
{{ partial "head" . }}
</head>
<body>
<header>
{{ partial "header" . }}
</header>
<div id="wrapper">
<div id="content">
<div id="page-content">
<h1>{{ .Title }}</h1>
<article class="post">
{{ .Content }}
</article>
</div>
</div>
</div>
{{ partial "footer" . }}
</body>
</html>
1 change: 1 addition & 0 deletions layouts/partials/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ <h5>Pages</h5>
<li><a href="/packages">Packages</a></li>
<li><a href="/learn">Learn</a></li>
<li><a href="/people">People</a></li>
<li><a href="/community-calendar">Community Calendar</a></li>
<li><a href="/blog">Blog</a></li>
<li><a href="/events">Events</a></li>
<li><a href="/about">About</a></li>
Expand Down
18 changes: 15 additions & 3 deletions layouts/partials/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -69,14 +69,26 @@
>Blog</a
>
</li>
<li class="nav-item">
<li class="nav-item dropdown">
<a
class="nav-link{{ if eq .Section `events` }}
class="nav-link dropdown-toggle{{ if or (eq .Section `events`) (eq .Section `community-calendar`) }}
active
{{ end }}"
href="/events"
>Events</a
id="events-dropdown"
role="button"
aria-expanded="false"
>
Events
</a>
<ul class="dropdown-menu" aria-labelledby="events-dropdown">
<li>
<a class="dropdown-item" href="/events">Events</a>
</li>
<li>
<a class="dropdown-item" href="/community-calendar">Community Calendar</a>
</li>
</ul>
</li>
<li class="nav-item dropdown">
<a
Expand Down
Loading