-
Notifications
You must be signed in to change notification settings - Fork 0
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 #60 from cmpadden/feat/talks
feat: add talks landing page
- Loading branch information
Showing
2 changed files
with
135 additions
and
118 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
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,39 @@ | ||
<script setup> | ||
const talks = [ | ||
{ | ||
title: 'Dagster Deep Dive: Data Quality - Building Reliable Data Platforms', | ||
date: new Date(2024, 8, 6), | ||
href: 'https://github.com/dagster-io/talks/blob/main/slides/deep-dive-data-quality.pdf' | ||
}, | ||
{ | ||
title: 'MotherDuck and Dagster: From local development to production', | ||
date: new Date(2024, 4, 18), | ||
href: 'https://github.com/dagster-io/talks/blob/main/slides/motherduck-dagster-evidence-hybrid-compute.pdf' | ||
}, | ||
{ | ||
title: 'Dagster Deep Dive: Thinking in Partitions', | ||
date: new Date(2024, 3, 5), | ||
href: 'https://github.com/dagster-io/talks/blob/main/slides/03-deep-dive-partitions.pdf' | ||
} | ||
] | ||
const formatDate = function (date) { | ||
return date.toLocaleDateString('en-US', { month: 'short', day: '2-digit', year: 'numeric' }); | ||
} | ||
</script> | ||
<template> | ||
<div class="text-white font-mono container mx-auto"> | ||
<h1 class="text-2xl font-extrabold font-orange-500 mb-8">Talks & Presentations</h1> | ||
<div class="grid grid-cols-5 gap-y-2 md:gap-y-4"> | ||
<template v-for="(talk, ix) in talks" :key="ix"> | ||
<div class="col-span-5 md:col-span-1 font-bold">{{ formatDate(talk.date) }}</div> | ||
<div class="col-span-5 md:col-span-4"> | ||
<a class="underline underline-offset-4 decoration-dotted decoration-2 hover:text-orange-500 hover:cursor-pointer" | ||
:href="talk.href"> | ||
{{ talk.title }} | ||
</a> | ||
</div> | ||
</template> | ||
</div> | ||
</div> | ||
</template> |