-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (41 loc) · 2.63 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
---
---
<!DOCTYPE html>
<html lang="en">
<head>
{% include_relative _templates/header.html %}
<title>ambiguous.name</title>
</head>
<body>
<div class="content">
<h1>Hello!</h1>
<p>I'm Tyler, I've been coding since I was 10, and I do programming things.</p>
<p>
Socials:
</p>
<p>
<a class="social-img" href="https://www.github.com/ambiguousname/"><img src="/assets/icons/github-mark-white.svg"/></a>
<a class="social-img" rel="me" href="https://mathstodon.xyz/@ambiguousname"><img src="/assets/icons/mastodon-white.svg"/></a>
<a class="social-img" href="https://bsky.app/profile/ambiguous.name"><svg class="w-8 h-8 inline-block" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 568 501"><title>Bluesky butterfly logo</title><path fill="currentColor" d="M123.121 33.664C188.241 82.553 258.281 181.68 284 234.873c25.719-53.192 95.759-152.32 160.879-201.21C491.866-1.611 568-28.906 568 57.947c0 17.346-9.945 145.713-15.778 166.555-20.275 72.453-94.155 90.933-159.875 79.748C507.222 323.8 536.444 388.56 473.333 453.32c-119.86 122.992-172.272-30.859-185.702-70.281-2.462-7.227-3.614-10.608-3.631-7.733-.017-2.875-1.169.506-3.631 7.733-13.43 39.422-65.842 193.273-185.702 70.281-63.111-64.76-33.89-129.52 80.986-149.071-65.72 11.185-139.6-7.295-159.875-79.748C9.945 203.659 0 75.291 0 57.946 0-28.906 76.135-1.612 123.121 33.664Z"></path></svg></a>
<a class="social-img" href="https://ambiguous-name.itch.io/"><img src="/assets/icons/itchio-textless-white.svg"/></a>
<a class="social-img" href="/feed.xml"><img src="/assets/icons/RSS-icon.svg"/></a>
</p>
<p>
I sometimes <a href="/blog">post here on my blog</a>. I also make <a href="/animations">animations in Blender</a> from time to time.
</p>
<p>
Email me: <code>ambiguousname (at) this website's URL/domain name</code>
</p>
<h1>A Few Notable Projects:</h1>
{% assign projects = site.projects | sort: 'date' | reverse%}
{% for project in projects %}
<div class="jumbotron" style="background-image: url(/assets/images/{{ project.image }}); {% if project.scale %}background-size: {{ project.scale }}; {% endif %}">
<div class="jumbotron-content">
<h1>{{ project.name }}</h1>
{{ project.content }}
</div>
</div>
{% endfor %}
</div>
</body>
</html>