-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
41 lines (31 loc) · 1 KB
/
index.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
---
layout: default
---
<div class="home">
<script src="P5/p5.min.js"></script>
<script src="P5/p5.dom.min.js"></script>
<script src="P5/p5.sound.min.js"></script>
<script src="P5/cube.js"></script>
<center>
<h1 class="site-heading">Shantanu Kumar</h1>
<p class="text">
Hi. I am a software engineer from <a href="http://www.iitd.ac.in">IIT Delhi</a> living in California. <br>
I like to let my code draw on the internet sometimes.
</p>
<div id="cube_holder"></div>
</center>
<h1 class="page-heading">Posts</h1>
<ul class="post-list">
{% for post in site.posts %}
<li>
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
<h2>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h2>
</li>
{% endfor %}
</ul>
<center>
<iframe src="https://editor.p5js.org/SourKream/embed/LS_VYq7dC" width=600 height=600 style="border:none;"></iframe>
</center>
</div>