-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
51 lines (46 loc) · 2.02 KB
/
blog.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Epilogue&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
</head>
<body>
<header>
<div class="tab-container">
<a href="index.html" class="tab-link">Home</a>
<a href="index.html" class="tab-link">Blog</a>
<a href="about.html" class="tab-link">About Me</a>
</div>
</header>
<blog>
<div class="post-entry">
<div class="post">
<a href="https://github.com/ECE-180D-WS-2023/Knowledge-Base-Wiki/wiki/Manim">
<img src="images/blog/AI.png" alt="Post Image">
</a>
<div class="post-content">
<h2 class="post-title">
<a href="https://github.com/ECE-180D-WS-2023/Knowledge-Base-Wiki/wiki/Manim" style="color: rgb(0, 0, 0); text-decoration: none;">
Using Manim to Create Animations Programmatically
</a>
</h2>
<p class="post-description">
A gentle introduction to Manim, a powerful mathematical animation engine.
</p>
<p class="post-footer">
July 1, 2023 · 30 mins · Austin Liu, Bruce Qu, and Christian Ko
</p>
</div>
</div>
<!-- <div class="post">
<img src="images/blog/AI.png" alt="Post Image">
<div class="post-content">
<h2 class="post-title">Post Title</h2>
<p class="post-description">Post description goes here...</p>
</div>
</div> -->
</div>
</blog>
</body>
</html>