Skip to content
Draft
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
70 changes: 0 additions & 70 deletions src/2026-draft-pages/hotels-all-hands.astro

This file was deleted.

2 changes: 1 addition & 1 deletion src/components/practical-info/hotels/Hotel.astro
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const { name, link, image, description, distance_kinepolis, price_range } =
<li>{price_range} / night</li>
<li>{distance_kinepolis} from venue</li>
</ul>
<p class="description">{description}</p>
<p class="description" set:html={description} />
</div>
</div>

Expand Down
70 changes: 70 additions & 0 deletions src/pages/hotels-all-hands.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
---
import HotelList from "../components/practical-info/hotels/HotelList.astro";
import Hotel from "../components/practical-info/hotels/Hotel.astro";
import CommonLayout from "../layouts/CommonLayout.astro";
import Hero from "../components/Hero.astro";
import OneColumn from "../components/OneColumn.astro";
---

<CommonLayout
title="Hotels for All-Hands Attendees"
header="Hotels for All-Hands Attendees"
withLogo
>
<Hero title="Hotels for All-Hands Attendees" color="yellow" />

<OneColumn>
<div class="markdown">
<p>
We have reserved blocks of rooms at a couple of hotels to ensure
availability for the All-Hands participants. Breakfast included and
flexible cancellation.
</p>
<p>
The Moxy and HolidayInn hotel links below will take you to custom
booking page created for RustWeek.
</p>
<p>
At 2L De Blend we don't have a reserved blocks of rooms, but as long as
there is availability you can use a discount code to get a studio at a
reasonable price.
</p>
<p>
The distances mentioned on this page refer to the shortest path when
walking and/or making use of public transport.
</p>
<p>
If you're looking for more hotel options, have a look at our <a
href="/hotels">other hotel recommendations</a
>.
</p>
</div>
</OneColumn>

<HotelList>
<Hotel
name="Moxy Utrecht"
link="https://app.marriott.com/reslink?id=1762352977355&key=GRP&app=resvlink"
image="moxy.avif"
distance_kinepolis="13 min"
price_range="202€"
description="A trendy hotel with a modern vibe. Provides meeting rooms, co-working facilities and a bar. 35 rooms reserved."
/>
<Hotel
name="Holiday Inn Express"
link="#todo"
image="holiday-inn-express-utrecht.jpg"
distance_kinepolis="TODO min"
price_range="~€155-160"
description="TODO"
/>
<Hotel
name="2L De Blend"
link="https://2ldeblend.nl/nl/"
image="deblend.jpg"
distance_kinepolis="22 min"
price_range="~€140-175 (studio) – €200 (suite)"
description="Hotel with studios and suites with a fully equipped kitchen. More affordable prices. Close to both conference and All-Hands venue. Apply <strong>'RustWeek2026'</strong> for a 20% discount on studios."
/>
</HotelList>
</CommonLayout>
20 changes: 10 additions & 10 deletions src/2026-draft-pages/hotels.astro → src/pages/hotels.astro
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ import OneColumn from "../components/OneColumn.astro";
link="https://2ldeblend.nl/nl/"
image="deblend.jpg"
distance_kinepolis="22 min"
price_range="~€140 (studio) – €200 (suite)"
description="Hotel with studios and suites with a fully equipped kitchen. Affordable prices. Close to both conference and workshop venue. Apply 'RustWeek20' for a 20% discount on studios."
price_range="~€140-175 (studio) – €200 (suite)"
description="Hotel with studios and suites with a fully equipped kitchen. More affordable prices. Apply <strong>'RustWeek2026'</strong> for a 20% discount on studios."
/>
<!-- <Hotel
name="Moxy Utrecht"
Expand All @@ -49,14 +49,14 @@ import OneColumn from "../components/OneColumn.astro";
price_range="€200–€230"
description="A trendy hotel with a modern vibe. Provides meeting rooms, co-working facilities and a bar."
/> -->
<!-- <Hotel
name="NH Utrecht (Jaarbeursplein)"
link="https://www.nh-hotels.com/nl/hotel/nh-utrecht"
image="nh-utrecht.jpg"
distance_kinepolis="7 min"
price_range="€200–250"
description="Sleek hotel in the center of Utrecht. Short walk to the conference venue."
/> -->
<Hotel
name="NH Utrecht (Jaarbeursplein)"
link="https://www.nh-hotels.com/nl/hotel/nh-utrecht"
image="nh-utrecht.jpg"
distance_kinepolis="7 min"
price_range="€200–250"
description="Sleek hotel in the center of Utrecht. Short walk to the conference venue."
/>
<Hotel
name="Hampton by Hilton"
link="https://www.hilton.com/nl/hotels/amsunhx-hampton-utrecht-central-station/"
Expand Down