Skip to content

Commit

Permalink
actually add directions
Browse files Browse the repository at this point in the history
  • Loading branch information
jdonszelmann committed Apr 24, 2024
1 parent c08b9fb commit 56021db
Show file tree
Hide file tree
Showing 3 changed files with 104 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
{
}
34 changes: 34 additions & 0 deletions src/components/workshop-schedule-item.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
---
interface Props {
name: string;
author: string;
span: number;
link?: string;
on: boolean;
}
const { name, author, span, link, on } = Astro.props;
---

<a class:list={["workshop-schedule ", { on: on }]} href={`/workshops/${name}`}>
{name} - {author}
</a>

<style define:vars={{ span }}>
.workshop-schedule {
grid-row: span var(--span);
color: #fff0e6;
text-decoration: none;
writing-mode: vertical-rl;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: larger;
font-weight: bold;
}

.on {
background-color: var(--color-red-500);
}
</style>
68 changes: 68 additions & 0 deletions src/pages/directions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
---
layout: "../layouts/PageLayout.astro"
title: "Getting to the Venue"
---

# Address

Lijm en Cultuur
Rotterdamseweg 272
2628 AT, Delft

Phone: +31 15 262 94 00
[email protected]

<hr>

# By public transport (recomended)

## Arriving from Rotterdam

*From Delft Station:* (recommended)

Take bus 69, 174 or 50. Get off at the TU-Mekelpark stop.

* Continue walking along the Cornelis Drebbelweg
* At the end, turn left onto Rotterdamseweg
* After 200m you will see the entrance gate to the Lijm & Cultuur site.

Note that you can also walk this distance, along the "Schie" canal, which is quite pretty. This takes about 15 minutes.

*From Delft Campus Station:*

* Take the stairs that lead onto the viaduct (Kruithuisweg) and walk left.
* After 600 meters, take the stairs on the left down to Rotterdamseweg
* At the bottom of the stairs, turn right along Rotterdamseweg
* After 500 meters you will see the entrance gate of Lijm & Cultuur on your left side.

## Arriving from Amsterdam/ The Hague

Delft Campus Station:
See walking directions ‘arriving from Rotterdam’.

Delft Station:

Take bus 69, 174 or 50. Get off at the TU-Mekelpark stop.
See walking directions ‘arriving from Rotterdam.

<hr>

# By car

## Arriving from Rotterdam:

Take exit 10 from the A13 (N470, Delft-Zuid) and continue in the direction TU Delft:

* After taking the roundabout, take the first exit: "TU Delft – Delft tech park".
* At the end of the exit turn left (Schoemakersstraat) in the direction P Rotterdamseweg.
* Continue straight after under passing the viaduct (Uytenbogaartsingel).
* Turn right after 500 meters (Heertjeslaan) and follow the signs for Industrieterrein Rotterdamseweg.
* After 600 meters turn right (Rotterdamseweg)
* After 1000 meter you can enter the Lijm & Cultuur terrain on the left side.

## Arriving from Amsterdam / The Hague

Take exit 10 from the A13 (N470, Delft Zuid).

* At the traffic lights take a right turn for "TU Delft – Delft tech park".
* From here continue as per the directions "arriving from Rotterdam".

0 comments on commit 56021db

Please sign in to comment.