-
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.
- Loading branch information
Showing
7 changed files
with
118 additions
and
2 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.
Binary file not shown.
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,48 @@ | ||
--- | ||
import "@fontsource/inter/variable.css"; | ||
import Footer from "~/components/footer.astro"; | ||
import Header from "~/components/header.astro"; | ||
import "~/styles/index.css"; | ||
import ContentSection from "~/components/content-section.astro"; | ||
import Spacer from "~/components/Spacer.astro"; | ||
const { site } = Astro; | ||
const description = "ML@Purdue AIGuide Blog"; | ||
--- | ||
|
||
<!DOCTYPE html> | ||
<html lang="en" class="h-full motion-safe:scroll-smooth" data-theme="dark"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width" /> | ||
<!-- <meta name="generator" content={generator} /> --> | ||
|
||
<title>ML@Purdue - AIGuide Blog</title> | ||
<meta name="description" content={description} /> | ||
|
||
<!-- social media --> | ||
<meta property="og:title" content="ML@Purdue" /> | ||
<meta property="og:type" content="website" /> | ||
<meta property="og:description" content={description} /> | ||
<meta property="og:image" content="/social.png" /> | ||
<meta property="og:url" content={site} /> | ||
<meta name="twitter:card" content="summary_large_image" /> | ||
</head> | ||
<body | ||
class="h-full overflow-x-hidden bg-default text-default text-base selection:bg-secondary selection:text-white" | ||
> | ||
<Header fixed /> | ||
<Spacer y={96} /> | ||
<article class="mx-auto mt-20 w-[65vw] max-w-[120ch]"> | ||
<ContentSection id="aiguide-interviews-header" title="AI + Governance with Dr. Daniel Schiff"> | ||
<h1 class="font-bold text-xl">December 1, 2023</h1> | ||
<iframe width="560" height="315" src="https://www.youtube.com/embed/GmxQp0i3RnM" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe> | ||
<a target="_blank" href="https://docs.google.com/document/d/1RXnxVbz_IRmLtSMuRI4KxZMXCH7xynajyxt7XJ9qfYM/edit"><h1 class="font-bold text-xl underline decoration-dotted ">Link to transcript</h1></a> | ||
|
||
</ContentSection> | ||
</article> | ||
<Footer /> | ||
</body> | ||
</html> |
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,48 @@ | ||
--- | ||
import "@fontsource/inter/variable.css"; | ||
import Footer from "~/components/footer.astro"; | ||
import Header from "~/components/header.astro"; | ||
import "~/styles/index.css"; | ||
import ContentSection from "~/components/content-section.astro"; | ||
import Spacer from "~/components/Spacer.astro"; | ||
const { site } = Astro; | ||
const description = "ML@Purdue AIGuide Blog"; | ||
--- | ||
|
||
<!DOCTYPE html> | ||
<html lang="en" class="h-full motion-safe:scroll-smooth" data-theme="dark"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width" /> | ||
<!-- <meta name="generator" content={generator} /> --> | ||
|
||
<title>ML@Purdue - AIGuide Blog</title> | ||
<meta name="description" content={description} /> | ||
|
||
<!-- social media --> | ||
<meta property="og:title" content="ML@Purdue" /> | ||
<meta property="og:type" content="website" /> | ||
<meta property="og:description" content={description} /> | ||
<meta property="og:image" content="/social.png" /> | ||
<meta property="og:url" content={site} /> | ||
<meta name="twitter:card" content="summary_large_image" /> | ||
</head> | ||
<body | ||
class="h-full overflow-x-hidden bg-default text-default text-base selection:bg-secondary selection:text-white" | ||
> | ||
<Header fixed /> | ||
<Spacer y={96} /> | ||
<article class="mx-auto mt-20 w-[65vw] max-w-[120ch]"> | ||
<ContentSection id="aiguide-interviews-header" title="Forestry/Agriculture/AI with Dr. Jingjing Liang"> | ||
<h1 class="font-bold text-xl">December 19, 2023</h1> | ||
<iframe width="560" height="315" src="https://www.youtube.com/embed/lUYDrc81nP0" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe> | ||
<a target="_blank" href="https://docs.google.com/document/d/1AIiyNk9Fuz7ArERNYrBzkfpsH5OpLeuK2sR61XJEZWo/edit"><h1 class="font-bold text-xl underline decoration-dotted ">Link to transcript</h1></a> | ||
|
||
</ContentSection> | ||
</article> | ||
<Footer /> | ||
</body> | ||
</html> |