Skip to content

Commit

Permalink
update blog
Browse files Browse the repository at this point in the history
  • Loading branch information
chiragzq committed Nov 15, 2023
1 parent 95a234a commit 137546e
Show file tree
Hide file tree
Showing 4 changed files with 64 additions and 0 deletions.
Binary file added src/assets/blog/10-30.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/blog/blog-3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions src/pages/blog.astro
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,10 @@ import thumbnail916 from "~/assets/blog/9-16.jpeg";
import thumbnail917 from "~/assets/blog/9-17.jpg";
import thumbnail923 from "~/assets/blog/9-23.jpg";
import thumbnail929 from "~/assets/blog/9-29.jpg";
import thumbnail1030 from "~/assets/blog/10-30.jpeg";
import blog1 from "~/assets/blog/blog-1.webp";
import blog2 from "~/assets/blog/blog-2.png";
import blog3 from "~/assets/blog/blog-3.png";
const { site } = Astro;
const description = "ML@Purdue AIGuide Blog";
Expand Down Expand Up @@ -53,6 +55,10 @@ const description = "ML@Purdue AIGuide Blog";
<p>If you are interested in helping out please reach out to aiml [at] purdue [dot] edu!</p>
</ContentSection>
<Spacer y={48} />
<ContentSection id="aiguide-blaogs" title="Presentations">
<a href="https://docs.google.com/presentation/d/1_anlwjEKuJ2d9I_a1f0AWxtYPRSURaTmKYC6yKsWyzE/edit?usp=sharing"><h1 class="font-bold text-3xl text-center">ML@Purdue Westminster AI Talk</h1></a>
</ContentSection>
<Spacer y={48} />
<ContentSection id="aiguide-blogs" title="Blog Posts">
<a href="https://medium.com/@sigaipurdue/ml-youtube-channel-tier-list-783e314d81c6">
<h1 class="font-bold text-3xl text-center">Machine Learning Youtube Channel Tier List</h1>
Expand All @@ -63,9 +69,19 @@ const description = "ML@Purdue AIGuide Blog";
<h1 class="font-bold text-3xl text-center">Machine Learning Tools and Platforms</h1>
<img src={blog2.src} class="mx-auto w-1/3"/>
</a>
<Spacer y={16} />
<a href="https://medium.com/@sigaipurdue/3-out-of-many-ways-neuroscience-inspired-machine-learning-ab53fc20e985">
<h1 class="font-bold text-3xl text-center">3 (out of many…) Ways Neuroscience Inspired Machine Learning</h1>
<img src={blog3.src} class="mx-auto w-1/3"/>
</a>
</ContentSection>
<Spacer y={48} />
<ContentSection id="aiguide-interviews-header" title="Interviews">
<a href="/blog/10-30">
<h1 class="font-bold text-3xl text-center">AI/Hardware/Neuroscience with Dr. Kaushik Roy </h1>
<h1 class="font-bold text-xl text-center">October 30, 2023</h1>
<img src={thumbnail1030.src} class="mx-auto w-1/3"/>
</a>

<a href="/blog/9-29">
<h1 class="font-bold text-3xl text-center">AI in Classrooms with Dr. Lindsay Hamm </h1>
Expand Down
48 changes: 48 additions & 0 deletions src/pages/blog/10-30.astro
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/Hardware/Neuroscience with Dr. Kaushik Roy">
<h1 class="font-bold text-xl">October 30, 2023</h1>
<iframe width="560" height="315" src="https://www.youtube.com/embed/4UDgfXdonPE" 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/1DCsUVkgIuHOGkzOuI8x1mS-Ti1ckWwJTNAJ7f2_Kguc/edit?usp=sharing "><h1 class="font-bold text-xl">Transcript</h1></a>

</ContentSection>
</article>
<Footer />
</body>
</html>

0 comments on commit 137546e

Please sign in to comment.