-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
75 additions
and
6 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.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
<template> | ||
<EternaPage title=""> | ||
<HeroSection | ||
backgroundImage="@/assets/home/hero-eternacon-2024-alt.jpg" | ||
registerLink="https://stanford.zoom.us/meeting/register/tJcucOmgrDkpEtwdio0PDbkvpFdb9w3gl5r9#/registration" | ||
> | ||
Tune in on July 20-21 to exciting talks and activities from Eterna researchers, developers, | ||
players, and other world-class experts. | ||
</HeroSection> | ||
<ConferenceAreasSection /> | ||
<section> | ||
<h3 class="mt-2">Attendance</h3> | ||
<p> | ||
Attending Eternacon 2024 is <strong>free</strong>, <strong>open to everyone</strong>, and | ||
<strong>online</strong>. To attend, | ||
<a href="https://stanford.zoom.us/meeting/register/tJcucOmgrDkpEtwdio0PDbkvpFdb9w3gl5r9#/registration">preregister via Zoom</a>. | ||
You will receive a link by email unique to you that can be used to join the conference | ||
once it starts. Zoom comments will be available to interact with presenters, as well as | ||
opportunities to join with your voice and video. | ||
</p> | ||
<p> | ||
Additional questions? Contact <a href="mailto:[email protected]">[email protected]</a>. | ||
</p> | ||
</section> | ||
<h3>Schedule</h3> | ||
<p>TBA</p> | ||
<template #sidebar="{ isInSidebar }"> | ||
<DropdownSidebarPanel | ||
:options="options" | ||
:defaultIndex="-1" | ||
paramName="sort" | ||
replace | ||
:isInSidebar="isInSidebar" | ||
/> | ||
</template> | ||
</EternaPage> | ||
</template> | ||
|
||
<script lang="ts"> | ||
import { Component, Vue } from 'vue-property-decorator'; | ||
import EternaPage from '@/components/PageLayout/EternaPage.vue'; | ||
import DropdownSidebarPanel from '@/components/Sidebar/DropdownSidebarPanel.vue'; | ||
import HeroSection from './components/HeroSection.vue'; | ||
import ConferenceAreasSection from './components/ConferenceAreasSection.vue'; | ||
import ScheduleSection from './components/ScheduleSection.vue'; | ||
import { options } from './AboutEternacon.vue'; | ||
import sessions from './speakers-2023.json'; | ||
@Component({ | ||
components: { EternaPage, HeroSection, ConferenceAreasSection, ScheduleSection, DropdownSidebarPanel }, | ||
}) | ||
export default class Eternacon2023 extends Vue { | ||
get sessions() { | ||
return sessions; | ||
} | ||
get options() { | ||
return options; | ||
}; | ||
} | ||
</script> |
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