-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added in the schedule for covhack2020
- Loading branch information
Tom
committed
Jan 10, 2020
1 parent
48b8b99
commit 0aa6a44
Showing
7 changed files
with
131 additions
and
6 deletions.
There are no files selected for viewing
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,23 @@ | ||
--- | ||
type: schedule | ||
title: Saturday | ||
listOrder: 1 | ||
--- | ||
|
||
<style> | ||
table{ | ||
width:100%; | ||
} | ||
</style> | ||
|
||
| Time | Activity | | ||
|-------|-----------------------| | ||
| 10:00 | Doors Open | | ||
| 11:00 | Opening Presentations | | ||
| 12:00 | Hacking Starts! | | ||
| 13:00 | Lunch | | ||
| 14:00 | Workshops Start | | ||
| 19:00 | Dinner | | ||
| 20:00 | Code in the Dark | | ||
| 21:00 | Code Golf | | ||
| 22:00 | Werewolf | |
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,22 @@ | ||
--- | ||
type: schedule | ||
title: Sunday | ||
listOrder: 2 | ||
--- | ||
|
||
<style> | ||
table{ | ||
width:100%; | ||
} | ||
</style> | ||
|
||
|
||
| Time | Activity | | ||
|-------|-----------------------------| | ||
| 7:00 | Breakfast | | ||
| 12:00 | Hacking Ends | | ||
| 13:00 | Lunch | | ||
| 14:00 | Presentations | | ||
| 16:00 | Judging | | ||
| 16:30 | Awards and Closing Ceremony | | ||
| 17:00 | Closing | |
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,25 @@ | ||
import React from 'react' | ||
|
||
import { Row, Col, Card, CardBody, CardTitle, CardText } from 'reactstrap' | ||
|
||
export const Schedule = props => ( | ||
<Row className="row-eq-height"> | ||
{props.schedule | ||
.sort((a, b) => a.listOrder - b.listOrder) | ||
.map(schedule => ( | ||
<Col md="12" lg="6" key={Schedule.id} className="mb-3"> | ||
<Card className="shadow-sm bg-white h-100"> | ||
<CardBody> | ||
<CardTitle> | ||
<h4>{schedule.title}</h4> | ||
</CardTitle> | ||
|
||
<CardText> | ||
<div dangerouslySetInnerHTML={{ __html: schedule.html }} /> | ||
</CardText> | ||
</CardBody> | ||
</Card> | ||
</Col> | ||
))} | ||
</Row> | ||
) |
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