-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
105 lines (96 loc) · 3.56 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
---
layout: default
title: Espi Marisa
description: Silly enby, computer witch, activist, and CS student at Auburn University.
pronouns: they/she
location: Huntsville, Alabama
github: espimarisa
discord: 647269760782041133
telegram: espimarisa
bluesky: espi.me
twitter: espidotme
email: [email protected]
steam: espimarisa
pubkey: espimarisa-pubkey.asc
---
<title>{{ page.title }}</title>
<header>
<h1 class="header-title" id="name">{{ page.title }}</h1>
<span id="pronouns">({{ page.pronouns }})</span>
<p class="header-description">{{ page.description }}</p>
<ul class="header-links">
<li>
<a href="/blog/" title="Blog">Blog</a>
</li>
<li>
<a href="https://github.com/{{ page.github }}" title="GitHub" target="_blank" rel="noreferrer">GitHub</a>
</li>
<li>
<a href="https://discord.com/users/{{ page.discord }}" title="Discord" target="_blank" rel="noreferrer">Discord</a>
</li>
<li>
<a href="https://t.me/{{ page.telegram }}" title="Telegram" target="_blank" rel="noreferrer">Telegram</a>
</li>
<li>
<a href="https://bsky.app/profile/{{ page.bluesky }}" title="Bluesky" target="_blank" rel="noreferrer">Bluesky</a>
</li>
<li>
<a href="https://x.com/{{ page.twitter }}" title="X/Twitter" target="_blank" rel="noreferrer">X/Twitter</a>
</li>
<li>
<a href="{{ site.baseurl }}/assets/{{ page.pubkey }}" title="PGP Pubkey" target="_blank" rel="noreferrer">GPG Pubkey</a>
</li>
<li id="last-item">
<a href="mailto:{{ page.email }}" title="Email" target="_blank" rel="noreferrer">Email</a>
</li>
</ul>
</header>
<main>
<!-- About -->
<div id="about">
<h2 class="title">About</h2>
<p>
I'm a visually impaired nonbinary gal proudly from Northeast Tennessee who now calls North Alabama home.
Currently, I'm a Computer Science student at <a href="https://auburn.edu" title="Auburn University" target="_blank" rel="noreferrer">Auburn University</a>.
</p>
<p>
I built my first desktop computer before I knew how to speak properly, and that hobby has stuck with me for my entire life. I like
messing with enthusiast PC hardware and enjoy overclocking anything that I possibly can.
</p>
<p>
In my spare time, I work with
<a href="https://altrac.works/" target="_blank" rel="noreferrer">ALTRAC</a>
(The Alabama Transgender Rights Action Coalition), fighting against discriminatory legislature introduced by the Alabama state house,
and pushing for proper representation.
</p>
<p>
Outside of work, I enjoy listening to music,
<a href="https://steamcommunity.com/id/{{ page.steam}}" title="Steam" target="_blank" rel="noreferrer">playing video games</a>,
reading, thrifting, and watching anime.
</p>
</div>
<!-- List of projects -->
<h2 class="title">Projects</h2>
<div id="post-list">
{% for project in site.projects %}
<a class="post-title" href="{{ project.link }}">{{ project.name }}</a>
<p class="post-description">{{ project.description }}</p>
<em class="post-date">{{ project.technologies }}</em>
<hr />
{% endfor %}
</div>
<!-- List of projects -->
<h2 class="title">Webring</h2>
<div id="webring-list">
{% for ring in site.webring %}
<a href="{{ ring.link }}" title="{{ ring.name }}" class="webring-image" target="_blank" rel="noreferrer">
<img
src="{{ site.baseurl }}/assets/images/webring/{{ ring.file }}"
alt="{{ ring.name }}"
title="{{ ring.name }}"
width="88px"
height="31px" />
</a>
{% endfor %}
</div>
</main>