Skip to content

Commit 70e0509

Browse files
committed
update blogs
1 parent 38deebf commit 70e0509

File tree

7 files changed

+118
-2
lines changed

7 files changed

+118
-2
lines changed

src/assets/blog/12-1.jpeg

190 KB
Loading

src/assets/blog/12-19.jpeg

132 KB
Loading

src/assets/blog/blog-4.webp

66.5 KB
Binary file not shown.

src/pages/blog.astro

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,12 @@ import thumbnail917 from "~/assets/blog/9-17.jpg";
1212
import thumbnail923 from "~/assets/blog/9-23.jpg";
1313
import thumbnail929 from "~/assets/blog/9-29.jpg";
1414
import thumbnail1030 from "~/assets/blog/10-30.jpeg";
15+
import thumbnail121 from "~/assets/blog/12-1.jpeg";
16+
import thumbnail1219 from "~/assets/blog/12-19.jpeg";
1517
import blog1 from "~/assets/blog/blog-1.webp";
1618
import blog2 from "~/assets/blog/blog-2.png";
1719
import blog3 from "~/assets/blog/blog-3.png";
20+
import blog4 from "~/assets/blog/blog-4.webp";
1821
1922
const { site } = Astro;
2023
const description = "ML@Purdue AIGuide Blog";
@@ -74,15 +77,32 @@ const description = "ML@Purdue AIGuide Blog";
7477
<h1 class="font-bold text-3xl text-center">3 (out of many…) Ways Neuroscience Inspired Machine Learning</h1>
7578
<img src={blog3.src} class="mx-auto w-1/3"/>
7679
</a>
80+
<Spacer y={16} />
81+
<a href="https://medium.com/@sigaipurdue/by-brian-song-68d37bd6deb5">
82+
<h1 class="font-bold text-3xl text-center">Remote Sensing 🌎 + ML 🤖 = 🤤</h1>
83+
<img src={blog4.src} class="mx-auto w-1/3"/>
84+
</a>
7785
</ContentSection>
7886
<Spacer y={48} />
7987
<ContentSection id="aiguide-interviews-header" title="Interviews">
88+
<a href="/blog/12-19">
89+
<h1 class="font-bold text-3xl text-center">Forestry/Agriculture/AI with Dr. Jingjing Liang</h1>
90+
<h1 class="font-bold text-xl text-center">December 19, 2023</h1>
91+
<img src={thumbnail1219.src} class="mx-auto w-1/3"/>
92+
</a>
93+
<Spacer y={16} />
94+
<a href="/blog/12-1">
95+
<h1 class="font-bold text-3xl text-center">AI + Governance with Dr. Daniel Schiff</h1>
96+
<h1 class="font-bold text-xl text-center">December 1, 2023</h1>
97+
<img src={thumbnail121.src} class="mx-auto w-1/3"/>
98+
</a>
99+
<Spacer y={16} />
80100
<a href="/blog/10-30">
81101
<h1 class="font-bold text-3xl text-center">AI/Hardware/Neuroscience with Dr. Kaushik Roy </h1>
82102
<h1 class="font-bold text-xl text-center">October 30, 2023</h1>
83103
<img src={thumbnail1030.src} class="mx-auto w-1/3"/>
84104
</a>
85-
105+
<Spacer y={16} />
86106
<a href="/blog/9-29">
87107
<h1 class="font-bold text-3xl text-center">AI in Classrooms with Dr. Lindsay Hamm </h1>
88108
<h1 class="font-bold text-xl text-center">September 29, 2023</h1>

src/pages/blog/10-30.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const description = "ML@Purdue AIGuide Blog";
3939
<ContentSection id="aiguide-interviews-header" title="AI/Hardware/Neuroscience with Dr. Kaushik Roy">
4040
<h1 class="font-bold text-xl">October 30, 2023</h1>
4141
<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>
42-
<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>
42+
<a target="_blank" href="https://docs.google.com/document/d/1DCsUVkgIuHOGkzOuI8x1mS-Ti1ckWwJTNAJ7f2_Kguc/edit?usp=sharing "><h1 class="font-bold text-xl underline decoration-dotted ">Link to transcript</h1></a>
4343

4444
</ContentSection>
4545
</article>

src/pages/blog/12-1.astro

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
---
2+
import "@fontsource/inter/variable.css";
3+
import Footer from "~/components/footer.astro";
4+
import Header from "~/components/header.astro";
5+
import "~/styles/index.css";
6+
import ContentSection from "~/components/content-section.astro";
7+
import Spacer from "~/components/Spacer.astro";
8+
9+
10+
const { site } = Astro;
11+
const description = "ML@Purdue AIGuide Blog";
12+
13+
---
14+
15+
<!DOCTYPE html>
16+
<html lang="en" class="h-full motion-safe:scroll-smooth" data-theme="dark">
17+
<head>
18+
<meta charset="utf-8" />
19+
<meta name="viewport" content="width=device-width" />
20+
<!-- <meta name="generator" content={generator} /> -->
21+
22+
<title>ML@Purdue - AIGuide Blog</title>
23+
<meta name="description" content={description} />
24+
25+
<!-- social media -->
26+
<meta property="og:title" content="ML@Purdue" />
27+
<meta property="og:type" content="website" />
28+
<meta property="og:description" content={description} />
29+
<meta property="og:image" content="/social.png" />
30+
<meta property="og:url" content={site} />
31+
<meta name="twitter:card" content="summary_large_image" />
32+
</head>
33+
<body
34+
class="h-full overflow-x-hidden bg-default text-default text-base selection:bg-secondary selection:text-white"
35+
>
36+
<Header fixed />
37+
<Spacer y={96} />
38+
<article class="mx-auto mt-20 w-[65vw] max-w-[120ch]">
39+
<ContentSection id="aiguide-interviews-header" title="AI + Governance with Dr. Daniel Schiff">
40+
<h1 class="font-bold text-xl">December 1, 2023</h1>
41+
<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>
42+
<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>
43+
44+
</ContentSection>
45+
</article>
46+
<Footer />
47+
</body>
48+
</html>

src/pages/blog/12-19.astro

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
---
2+
import "@fontsource/inter/variable.css";
3+
import Footer from "~/components/footer.astro";
4+
import Header from "~/components/header.astro";
5+
import "~/styles/index.css";
6+
import ContentSection from "~/components/content-section.astro";
7+
import Spacer from "~/components/Spacer.astro";
8+
9+
10+
const { site } = Astro;
11+
const description = "ML@Purdue AIGuide Blog";
12+
13+
---
14+
15+
<!DOCTYPE html>
16+
<html lang="en" class="h-full motion-safe:scroll-smooth" data-theme="dark">
17+
<head>
18+
<meta charset="utf-8" />
19+
<meta name="viewport" content="width=device-width" />
20+
<!-- <meta name="generator" content={generator} /> -->
21+
22+
<title>ML@Purdue - AIGuide Blog</title>
23+
<meta name="description" content={description} />
24+
25+
<!-- social media -->
26+
<meta property="og:title" content="ML@Purdue" />
27+
<meta property="og:type" content="website" />
28+
<meta property="og:description" content={description} />
29+
<meta property="og:image" content="/social.png" />
30+
<meta property="og:url" content={site} />
31+
<meta name="twitter:card" content="summary_large_image" />
32+
</head>
33+
<body
34+
class="h-full overflow-x-hidden bg-default text-default text-base selection:bg-secondary selection:text-white"
35+
>
36+
<Header fixed />
37+
<Spacer y={96} />
38+
<article class="mx-auto mt-20 w-[65vw] max-w-[120ch]">
39+
<ContentSection id="aiguide-interviews-header" title="Forestry/Agriculture/AI with Dr. Jingjing Liang">
40+
<h1 class="font-bold text-xl">December 19, 2023</h1>
41+
<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>
42+
<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>
43+
44+
</ContentSection>
45+
</article>
46+
<Footer />
47+
</body>
48+
</html>

0 commit comments

Comments
 (0)