71 lines
2 KiB
Plaintext
71 lines
2 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{{ site.title }}</title>
|
|
<link rel="stylesheet" href="{{ site.base_url }}/static/style.css"/>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<p>Welcome to</p>
|
|
<h1>{{ site.title }}</h1>
|
|
<p>{{ site.description }}</p>
|
|
</header>
|
|
{% assign sections=page.content | split: "<p>. . .</p>" %}
|
|
<main style="--section-count: {{sections | size}}">
|
|
<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>
|
|
<div id="socials">
|
|
{% for social in site.data.socials %}
|
|
<p><a href="{{social.url}}">
|
|
{% include "icon.html" size: 16, name: social.icon, alt: social.type %}
|
|
{{social.handle}}
|
|
</a></p>
|
|
{% endfor %}
|
|
</div>
|
|
</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>
|
|
{% for section in sections %}
|
|
<section style="--section-number: {{ forloop.index }}">
|
|
<div class="section-content-wrapper">
|
|
{{ section }}
|
|
</div>
|
|
</section>
|
|
{% endfor %}
|
|
<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>
|
|
</main>
|
|
</body>
|
|
</html>
|