Skip to content
Open
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
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
# RustWeek 2025 Website
# RustWeek 2026 Website

The website is built with [Astro](https://astro.build/).

In Astro, you can author content in [GitHub Flavored Markdown](https://github.github.com/gfm/).

## Setup project
## Setup project

```
```bash
yarn install
```

## Run in development

```
```bash
yarn run dev
```

To check the build succeeds:

```
```bash
yarn run build
```
```
2 changes: 1 addition & 1 deletion src/components/schedule/RustProjectSchedule.astro
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import BottomNote from "./BottomNote.astro";
<span slot="header">&mdash;</span>
<Fragment slot="activities">
<p>Explore Utrecht, hang out with friends, or join one of the social activities with other Rustaceans.</p>
<BottomNote>See <a href="/#explainer">RustWeek 2025</a></BottomNote>
<BottomNote>See <a href="/#explainer">RustWeek 2026</a></BottomNote>
</Fragment>
</ScheduleItem>
</ScheduleSection>
Expand Down
8 changes: 4 additions & 4 deletions src/layouts/LiveStreamLayout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,20 @@ const {day}: Props = Astro.props;
<div class="slot">
<div class="description" >
<p>
These are the livestreams of the talks of Rust Week 2025 for <b>{day == "tuesday"? "Tuesday 13 May" : "Wednesday 14 May"}</b>. There are two main conference days with talks.
These are the livestreams of the talks of Rust Week 2026 for <b>{day == "tuesday"? "Tuesday 19 May" : "Wednesday 20 May"}</b>. There are two main conference days with talks.
</p>
</div>

<div class="tabbar">
<a href="/live/tuesday" class:list={[day == "tuesday"?"active":"inactive"]}>Tue 13 May</a>
<a href="/live/wednesday" class:list={[day == "wednesday"?"active":"inactive"]}>Wed 14 May</a>
<a href="/live/tuesday" class:list={[day == "tuesday"?"active":"inactive"]}>Tue 19 May</a>
<a href="/live/wednesday" class:list={[day == "wednesday"?"active":"inactive"]}>Wed 20 May</a>
</div>

<slot />
</div>

<div class="footer-nav">
<span>You are currently on <b>{day == "tuesday"? "Tuesday 13 May":"Wednesday 14 May"}</b>'s stream page.</span>
<span>You are currently on <b>{day == "tuesday"? "Tuesday 19 May":"Wednesday 20 May"}</b>'s stream page.</span>

<div class="buttons">
<Button link={"/schedule/" + day}>
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
"allowSyntheticDefaultImports": true,
"baseUrl": "."
},
"exclude": ["src/2025-pages/", "src/2026-draft-pages/"]
"exclude": []
}