https://csclub.uwaterloo.ca/~a3thakra/csc/n3parikh-patch-1/ https://csclub.uwaterloo.ca/~a3thakra/csc/n3parikh-patch-1/events/2021/fall/BOT/ Co-authored-by: Aditya Thakral <a3thakra@csclub.uwaterloo.ca> Reviewed-on: #296 Co-authored-by: n3parikh <n3parikh@csclub.uwaterloo.ca> Co-committed-by: n3parikh <n3parikh@csclub.uwaterloo.ca>pull/308/head
parent
c7f0d83bba
commit
71bdeecb77
|
@ -1,9 +1,18 @@
|
|||
.container {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.separator {
|
||||
padding: 0 calc(8rem / 16);
|
||||
}
|
||||
|
||||
@media only screen and (max-width: calc(768rem / 16)) {
|
||||
.container {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.separator {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.setting {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -23,12 +23,10 @@ export function EventSetting(props: Props) {
|
|||
const separator = <span className={styles.separator}> | </span>;
|
||||
|
||||
return (
|
||||
<div>
|
||||
<time className={styles.setting} dateTime={props.date.toISOString()}>
|
||||
{date}
|
||||
</time>
|
||||
<div className={styles.container}>
|
||||
<time dateTime={props.date.toISOString()}>{date}</time>
|
||||
{separator}
|
||||
<span className={styles.setting}>{time}</span>
|
||||
<span>{time}</span>
|
||||
{separator}
|
||||
{location}
|
||||
</div>
|
||||
|
|
|
@ -0,0 +1,21 @@
|
|||
---
|
||||
name: 'CSC BOT & Game Night'
|
||||
short: 'Learn about our plans for the term and play some games with us.'
|
||||
date: 'Tuesday September 14 2021 19:00:00 GMT-0400 (Eastern Daylight Time)'
|
||||
online: true
|
||||
location: 'Twitch'
|
||||
poster: 'images/events/2021/fall/BOT.png'
|
||||
registerLink: https://bit.ly/csc-bot-event-signup-form
|
||||
---
|
||||
|
||||
Kick off the fall term with CS Club’s BOT event! 🍂 Interested in attending upcoming CSC events? Want to meet others in the CS community?
|
||||
|
||||
💻 Come join us on Twitch to learn about how you can become a member of CSC and the fun events we have planned for next term. 🎲 Stay for games and socials on the CSC Discord!
|
||||
|
||||
Registration is not required to attend! We’ll just be sending you an email reminder, as well as inviting you to our calendar event.
|
||||
|
||||
📅 Event Date: Tuesday, September 14th from 7:00-8:30 pm ET via [Twitch](https://www.twitch.tv/uwcsclub) and [Discord](https://discord.gg/pHfYBCg)
|
||||
|
||||
👉 Register at https://bit.ly/csc-bot-event-signup-form! Alternatively, you can also email us at exec@csclub.uwaterloo.ca to sign up as well.
|
||||
|
||||
Looking forward to seeing you there!! 🤗
|
|
@ -34,6 +34,7 @@ interface Metadata {
|
|||
date: string;
|
||||
online: boolean;
|
||||
location: string;
|
||||
registerLink?: string;
|
||||
}
|
||||
|
||||
export interface Event {
|
||||
|
|
|
@ -6,6 +6,17 @@ X-WR-RELCALID:3359A191-B19E-4B53-BADC-DFC084FC51C9
|
|||
CALSCALE:GREGORIAN
|
||||
METHOD:PUBLISH
|
||||
|
||||
BEGIN:VEVENT
|
||||
LOCATION:Twitch - Online
|
||||
DTSTAMP:20060912T200708Z
|
||||
UID:20210914T230000Z@csclub.uwaterloo.ca
|
||||
SEQUENCE:11
|
||||
DTSTART:20210914T230000Z
|
||||
DTEND:20210915T000000Z
|
||||
SUMMARY:CSC BOT & Game Night
|
||||
DESCRIPTION:Learn about our plans for the term and play some games with us.
|
||||
END:VEVENT
|
||||
|
||||
BEGIN:VEVENT
|
||||
LOCATION:University of Waterloo - Online
|
||||
DTSTAMP:20060912T200708Z
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 125 KiB |
Binary file not shown.
Before Width: | Height: | Size: 74 KiB |
Loading…
Reference in New Issue