-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
executable file
·58 lines (57 loc) · 2.21 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
---
layout: personal
title: Home
---
<header class="hero tnsl-flickerQuick">
<picture class="personal-insignia">
<source srcset="/assets/personal-site-assets/insignia-light.png" media="(prefers-color-scheme: light)">
<source srcset="/assets/personal-site-assets/insignia-dark.png" media="(prefers-color-scheme: dark)">
<img src="/assets/personal-site-assets/insignia-light.png">
</picture>
<h1>Antriksh Yadav</h1>
<p>Compulsively curious, with a desire to learn everything.</p>
<p>Software developer at Amazon Music. Designing great experiences.</p>
</header>
<h2 class="section-head tnsl-flickerQuick">Blogs</h2>
<nav class="blog-links tnsl-flicker">
<a href="/code" class="blog-tile">code.Antrikshy</a>
<a href="/film" class="blog-tile">film.Antrikshy</a>
</nav>
<h2 class="section-head tnsl-flickerQuick">Projects</h2>
<section class="projects tnsl-flicker">
<div>
{% for project in site.data.featured_projects %}
<div class="featured-project">
<h3>
{% if project.weblink %}
<a href="{{ project.weblink }}">{{ project.name }}</a>
{% else %}
{{ project.name }}
{% endif %}
<small>(<a href={{ project.source }}>source</a>)</small>
</h3>
<p>{{ project.description }}</p>
</div>
{% endfor %}
</div>
<br/>
<a href="https://github.com/Antrikshy">
<picture>
<source srcset="/assets/personal-site-assets/github-mark-dark.png" media="(prefers-color-scheme: light)">
<source srcset="/assets/personal-site-assets/github-mark-light.png" media="(prefers-color-scheme: dark)">
<img src="/assets/personal-site-assets/github-mark-dark.png">
</picture>
<br/>
<small>More on GitHub</small>
</a>
</section>
<h2 class="section-head tnsl-flickerQuick">Social</h2>
<section class="tnsl-flicker">
<a href="https://twitter.com/Antrikshy">
<picture class="social-icon">
<source srcset="/assets/personal-site-assets/twitter-logo-dark.png" media="(prefers-color-scheme: light)">
<source srcset="/assets/personal-site-assets/twitter-logo-light.png" media="(prefers-color-scheme: dark)">
<img src="/assets/personal-site-assets/twitter-logo-dark.png">
</picture>
</a>
</section>