-
Notifications
You must be signed in to change notification settings - Fork 14
Add 2026 Hackathon information #233
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
Open
awtj8o81ryywg793
wants to merge
30
commits into
main
Choose a base branch
from
awtj8o81ryywg793/patch-5
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 8 commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
b337e80
Update the hackathon’s start time
awtj8o81ryywg793 6dcb089
Update the hackathon’s description
awtj8o81ryywg793 673ecbb
Remove the redundant hackathon description
awtj8o81ryywg793 92d1e7b
Rephrase the hackathon title
awtj8o81ryywg793 2cf7533
Add `hackathon.astro`
awtj8o81ryywg793 56b1943
Add `GettingThereHackathon.astro`
awtj8o81ryywg793 09ecf2b
Add `Fosdem.avif` and `Fosdem2.avif`
awtj8o81ryywg793 8527647
Add `/hackathon` to `Header.astro`
awtj8o81ryywg793 ed00a92
Add `/hackathon` to `RoughSchedule.astro`
awtj8o81ryywg793 3ce2168
Add `/hackathon` to `Teaser2026.astro`
awtj8o81ryywg793 77310f6
Remove `GettingThere` from `hackathon.astro`
awtj8o81ryywg793 4ca470d
Include venue address in `hackathon.astro`
awtj8o81ryywg793 005502b
Add Google Maps and OpenStreetMap links to `hackathon.astro`
awtj8o81ryywg793 6d3c020
Fix minor formatting issue in `hackathon.astro`
awtj8o81ryywg793 1abe3ec
Add a link to the Working Groups page in `hackathon.astro`
awtj8o81ryywg793 b89699d
Add `/hackathon` to `attend.astro`
awtj8o81ryywg793 d233d35
Add "Good To Know" section to `hackathon.astro`
awtj8o81ryywg793 5765709
Add `/attend/#health-and-safety` to `hackathon.astro`
awtj8o81ryywg793 d078be4
Remove `GettingThereHackathon.astro`
awtj8o81ryywg793 1d62626
Update `hackathon.astro`
awtj8o81ryywg793 eae3c6b
Revise public transport ticket purchase details
awtj8o81ryywg793 7d8a373
Update `attend.astro`
awtj8o81ryywg793 e180353
Update `Teaser2026.astro`
awtj8o81ryywg793 16841eb
Update `hackathon.astro`
awtj8o81ryywg793 9da5e25
Add public transport line styling to `hackathon.astro`
awtj8o81ryywg793 221b016
Add Öresundståg network to `hackathon.astro`
awtj8o81ryywg793 b6e9125
Rework "Getting There" section
awtj8o81ryywg793 f323bbb
Add app store buttons to `hackathon.astro`
awtj8o81ryywg793 34a5acc
Update `/attend/#health-and-safety` anchor to mention accessibility p…
awtj8o81ryywg793 31dfbb4
Rephrase the statement on policies and accessibility in `hackathon.as…
awtj8o81ryywg793 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,103 @@ | ||
| --- | ||
| import {Image} from "astro:assets"; | ||
| import Map from "../img/Map.avif"; | ||
| --- | ||
|
|
||
| <style> | ||
| .content-wrapper { | ||
| max-width: var(--max-page-width); | ||
| margin-inline: auto; | ||
| } | ||
|
|
||
| h2 { | ||
| margin-block-end: 1rem; | ||
| } | ||
|
|
||
| h3 { | ||
| margin-block-end: 0; | ||
| } | ||
|
|
||
| .grid { | ||
| display: grid; | ||
| grid-template-columns: 1fr 1fr; | ||
| gap: 40px; | ||
| } | ||
|
|
||
| @media (max-width: 800px) { | ||
| /* Number obtained by manually testing */ | ||
| .grid { | ||
| grid-template-columns: 1fr; | ||
| } | ||
| } | ||
|
|
||
| p:first-of-type { | ||
| margin-block-start: 0.5rem; | ||
| } | ||
|
|
||
| ul { | ||
| list-style: none; | ||
| padding-inline-start: 0; | ||
| margin-block-start: 0.3rem; | ||
| } | ||
|
|
||
| li { | ||
| font-size: 1.125rem; | ||
| color: var(--secondary-color); | ||
| } | ||
|
|
||
| .map-grid { | ||
| display: grid; | ||
| grid-template: repeat(2, auto) / 1fr 1fr; | ||
| gap: 1px; | ||
| } | ||
|
|
||
| .map-grid img { | ||
| grid-column: 1 / -1; | ||
| box-shadow: 0 0 0 1px #636569; | ||
| } | ||
|
|
||
| .map-grid a { | ||
| padding: 1em; | ||
| display: grid; | ||
| place-content: center; | ||
| box-shadow: 0 0 0 1px #636569; | ||
| } | ||
| </style> | ||
| <div class="content-wrapper"> | ||
| <h2>Getting there</h2> | ||
| <div class="grid"> | ||
| <div class="item"> | ||
| <div class="map-grid"> | ||
| <Image src={Map} alt="" /> | ||
| <a href="https://maps.app.goo.gl/bfAYfrKsEQbiXFZ87" | ||
| >Google Maps</a | ||
| > | ||
| <a | ||
| href="https://www.openstreetmap.org/directions?to=55.6504856%2C12.5428797#map=15/55.65130/12.53958&layers=S" | ||
| >OpenStreet Map</a | ||
| > | ||
| </div> | ||
| <p> | ||
| The address is: | ||
| A. C. Meyers Vænge 15, 2450 København, Denmark (Rooms 3.084A and 3.084B) | ||
| </p> | ||
| </div> | ||
| <div class="item"> | ||
| <h3>Public Transportation</h3> | ||
| <p> | ||
| The hackathon marks the end of the conference and takes place in Copenhagen, Denmark, | ||
| following the main conference in Malmö, Sweden. Travelling between the two locations | ||
| is straightforward. | ||
| </p> | ||
| <p> | ||
| You can either take the regional train from Malmö to Ørestad and transfer to bus 8A, | ||
| getting off at Sluseholmen St, or take the regional train to Copenhagen Central Station | ||
| (København H) and continue by metro on line M4 to Sluseholmen St. | ||
| </p> | ||
| <p> | ||
| Public transport tickets can be purchased easily through the <a href="">Rejsekort app</a>, | ||
| while Aalborg University’s <a href="">map app</a> helps you navigate the campus and surrounding area. | ||
| </p> | ||
| </div> | ||
| </div> | ||
| </div> | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,94 @@ | ||
| --- | ||
| import PrimaryCta from "../components/PrimaryCta.astro"; | ||
| import TextAndImage from "../components/TextAndImage.astro"; | ||
| import BaseLayout from "../layouts/BaseLayout.astro"; | ||
|
|
||
| import GettingThere from "../components/GettingThereHackathon.astro"; | ||
|
|
||
| import Fosdem from "../img/Fosdem.avif"; | ||
| import Fosdem2 from "../img/Fosdem2.avif"; | ||
|
|
||
| const pageTitle = "Attend the hackathon" | ||
| const pageDescription = "Join us for a hackathon on 23 October 2026. In collaboration with Dr Carla Griggio and the mInt Research Lab on User-Centered Messaging Interoperability at the Department of Computer Science, Aalborg University, the hackathon will take place in Copenhagen, Denmark." | ||
|
awtj8o81ryywg793 marked this conversation as resolved.
Outdated
|
||
| --- | ||
|
|
||
| <style> | ||
| section:nth-child(even) { | ||
| background-color: #1a1a1a; | ||
| } | ||
|
|
||
| .content-wrapper { | ||
| max-width: var(--max-page-width); | ||
| margin-inline: auto; | ||
| } | ||
|
|
||
| .items { | ||
| max-width: var(--max-page-width); | ||
| margin-inline: auto; | ||
| display: flex; | ||
| flex-wrap: wrap; | ||
| justify-content: space-between; | ||
| gap: 2rem; | ||
| } | ||
|
|
||
| .item { | ||
| display: flex; | ||
| flex-direction: column; | ||
| flex-grow: 1; | ||
| } | ||
|
|
||
| .actions { | ||
| margin-top: 1rem; | ||
| } | ||
|
|
||
| p, | ||
| ul { | ||
| font-size: 1.125rem; | ||
| margin-block: 1em; | ||
| color: var(--secondary-color); | ||
| } | ||
| </style> | ||
| <BaseLayout | ||
| pageTitle={ pageTitle } | ||
| description={ pageDescription } | ||
| > | ||
| <section id="overview"> | ||
| <TextAndImage imgSrc={ Fosdem2 }> | ||
| <h2>Collaborate With Others</h2> | ||
| <p> | ||
| Join us for a hackathon on 23 October 2026. In collaboration with Dr Carla Griggio and the | ||
| mInt Research Lab on User-Centered Messaging Interoperability at the Department of | ||
| Computer Science, <a href="https://www.en.aau.dk/copenhagen">Aalborg University</a>, the | ||
| hackathon will take place in Copenhagen, Denmark. | ||
| </p> | ||
| <p> | ||
| Don't forget to grab your ticket! | ||
| </p> | ||
| <div class="actions"> | ||
| <PrimaryCta | ||
| href="/register" | ||
| flexBottom={ true } | ||
| > | ||
| Get Your Ticket | ||
| </PrimaryCta> | ||
| </div> | ||
| </TextAndImage> | ||
| </section> | ||
| <section> | ||
| <TextAndImage imgSrc={ Fosdem } reverse={ true }> | ||
| <h2>Shape the Future of Matrix</h2> | ||
| <p> | ||
| There are many activities to take part in during the hackathon, including: | ||
| </p> | ||
| <ul> | ||
| <li>Participating in sprints organised by the Decentralisation, Website & Content, or | ||
| Events Working Groups</li> | ||
|
awtj8o81ryywg793 marked this conversation as resolved.
Outdated
|
||
| <li>Adding or improving a feature in a client, bot, bridge, or server</li> | ||
| <li>Developing a proposal for a Matrix Spec Change</li> | ||
| </ul> | ||
| </TextAndImage> | ||
| </section> | ||
| <section id="getting-there"> | ||
| <GettingThere /> | ||
| </section> | ||
| </BaseLayout> | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.