-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from snowcamp:schedule
Planning conference
- Loading branch information
Showing
15 changed files
with
76 additions
and
25 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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 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 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 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 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 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 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 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 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 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 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 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,5 @@ | ||
--- | ||
import Redirect from '../layouts/Redirect.astro'; | ||
import cfp from '../data/cfp.json'; | ||
--- | ||
<Redirect target={cfp.dates.schedule.url.full}></Redirect> |
This file contains 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,35 @@ | ||
--- | ||
import Layout from '../layouts/Layout.astro'; | ||
import { t } from "../i18n/i18n"; | ||
import cfp from '../data/cfp.json'; | ||
import DateTimeChangingChild from "../components/DateTimeChangingChild.astro"; | ||
--- | ||
<Layout title={t('schedule_title')}> | ||
<section> | ||
<div style="height: 70px;"></div> | ||
<DateTimeChangingChild beginDate={new Date(cfp.dates.schedule.date).getTime()} refreshInterval="10000"> | ||
<div slot="before" style="margin: 20px auto 0 auto; text-align: center; min-height: 500px;"> | ||
{t('schedule_unavailable')} | ||
</div> | ||
|
||
<div slot="doing" style="margin: 20px auto 50px auto; width: 700px; text-align: center;"> | ||
<p>{t('schedule_available')} | ||
<br>{t('schedule_openfullschedule')} | ||
<br><a href="/schedule-full/"><img src="/img/schedule.png" height="100px" ></a> | ||
</p> | ||
<p>{t('schedule_change')}</p> | ||
<div style="margin-top: 50px;"> | ||
<iframe | ||
id="schedule_iframe" | ||
title="Embedded schedule" | ||
width="500" | ||
height="900" | ||
src={cfp.dates.schedule.url.embedded}> | ||
</iframe> | ||
</div> | ||
</div> | ||
</DateTimeChangingChild> | ||
</section> | ||
</Layout> | ||
|
This file was deleted.
Oops, something went wrong.