2021-10-13 02:44:45 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2021-11-10 16:53:02 +00:00
|
|
|
<meta name="viewport" content="width=525">
|
2021-10-13 02:44:45 +00:00
|
|
|
<title>{{ site.title }}</title>
|
2021-11-10 20:21:24 +00:00
|
|
|
<link rel="stylesheet" href="{{ site.base_url }}/static/landing-style.css"/>
|
|
|
|
<link rel="stylesheet" href="{{ site.base_url }}/static/common-style.css"/>
|
2021-10-13 02:44:45 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
|
|
|
<p>Welcome to</p>
|
|
|
|
<h1>{{ site.title }}</h1>
|
|
|
|
<p>{{ site.description }}</p>
|
|
|
|
</header>
|
2021-10-13 02:52:39 +00:00
|
|
|
{% assign sections=page.content | split: "<p>. . .</p>" %}
|
|
|
|
<main style="--section-count: {{sections | size}}">
|
2021-11-08 21:58:58 +00:00
|
|
|
<div id="cards">
|
|
|
|
<section class="card">
|
|
|
|
<h2> Emi Simpson </h2>
|
|
|
|
<p class="pronouns">
|
|
|
|
they/she/fae/he/sea/xe/ne
|
|
|
|
</p>
|
|
|
|
<div style="text-align: center">
|
|
|
|
<p class="contact">
|
|
|
|
<a class="email" href="mailto:emi@alchemi.dev">email</a>
|
|
|
|
<span>✨︎</span>
|
|
|
|
<a class="matrix" href="https://matrix.to/#/@emi:the-apothecary.club">matrix</a>
|
|
|
|
</p>
|
|
|
|
<p>~ local affront to god ~</p>
|
|
|
|
<p>~ hobbyist trespasser ~</p>
|
|
|
|
<p>~ hot as hell ~</p>
|
|
|
|
<p>~ enjoyer of that which is cringe ~</p>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
<section class="card">
|
|
|
|
<h2> Whereabouts </h2>
|
2021-11-16 17:15:01 +00:00
|
|
|
<ul id="socials" style="list-style-type: none">
|
2021-11-08 21:58:58 +00:00
|
|
|
{% for social in site.data.socials %}
|
2021-11-16 17:15:01 +00:00
|
|
|
<li><a href="{{social.url}}">
|
|
|
|
{% include "icon.html" size: 16, name: social.icon, alt: social.type %}
|
|
|
|
{{social.handle}}
|
|
|
|
</a></li>
|
2021-11-08 21:58:58 +00:00
|
|
|
{% endfor %}
|
2021-11-16 17:15:01 +00:00
|
|
|
</ul>
|
2021-11-08 21:58:58 +00:00
|
|
|
</section>
|
|
|
|
<section class="card">
|
|
|
|
<h2> Concoctions </h2>
|
|
|
|
{% for concotion in site.data.concotions %}
|
|
|
|
<p><b><a href="{{concotion.url}}">{{concotion.name}}</a></b> — {{concotion.desc}}</p>
|
|
|
|
{% endfor %}
|
|
|
|
</section>
|
|
|
|
</div>
|
2021-10-13 02:52:39 +00:00
|
|
|
{% for section in sections %}
|
|
|
|
<section style="--section-number: {{ forloop.index }}">
|
2021-11-10 01:36:47 +00:00
|
|
|
<div class="section-content-wrapper">
|
|
|
|
{{ section }}
|
|
|
|
</div>
|
2021-10-13 02:52:39 +00:00
|
|
|
</section>
|
|
|
|
{% endfor %}
|
2021-11-08 22:31:20 +00:00
|
|
|
<footer>
|
|
|
|
<div class="flag" style="margin-top: 50px">
|
|
|
|
<!-- Queer Villian Pride Baby!! -->
|
|
|
|
<div style="background-color: #f09"></div>
|
|
|
|
<div style="background-color: #f93"></div>
|
|
|
|
<div style="background-color: #9c3"></div>
|
|
|
|
<div style="background-color: #639"></div>
|
|
|
|
</div>
|
|
|
|
</footer>
|
2021-10-13 02:44:45 +00:00
|
|
|
</main>
|
2021-11-10 20:21:24 +00:00
|
|
|
<div id="disable-darkreader-popup">
|
|
|
|
<h2>Please disable darkreader</h2>
|
|
|
|
<details id="darkreader-why">
|
|
|
|
<summary>why?</summary>
|
|
|
|
|
|
|
|
<a class="dark-a11y" href="{{site.base_url}}/darkreader-a11y">
|
|
|
|
View an accessible version of this blurb
|
|
|
|
</a>
|
|
|
|
{% include "why-darkreader.html" %}
|
|
|
|
|
|
|
|
</details>
|
|
|
|
</div>
|
2021-10-13 02:44:45 +00:00
|
|
|
</body>
|
|
|
|
</html>
|