forked from lavender-legacy/lavender.software
47 lines
1.2 KiB
Plaintext
47 lines
1.2 KiB
Plaintext
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
||
|
<title>lavender software | digital product studio</title>
|
||
|
|
||
|
<link rel="stylesheet" href="/assets/styles.css">
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<header>
|
||
|
<img alt="Lavender Logo" src="/assets/logo.png"> <!-- TODO: We should compress this image -->
|
||
|
|
||
|
<div>
|
||
|
<h1>lavender software</h1>
|
||
|
<p>the kind of software that we make is … <em id="purple">purple</em></p>
|
||
|
</div>
|
||
|
</header>
|
||
|
|
||
|
<main>
|
||
|
<section>
|
||
|
<h2>projects</h2>
|
||
|
|
||
|
<ul>
|
||
|
<li><a href="https://git.lain.faith/videogame-hacker/discord-css-injector">lavender cord</a> - a theming platform for Discord</li>
|
||
|
</ul>
|
||
|
</section>
|
||
|
|
||
|
<section>
|
||
|
<h2>who are we?</h2>
|
||
|
|
||
|
<ul>
|
||
|
{% for member in members %}
|
||
|
<li>
|
||
|
<a href="{{ member.website }}">{{ member.name }}</a> - {{ member.title }}
|
||
|
</li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
</section>
|
||
|
</main>
|
||
|
|
||
|
<script async src="/assets/main_page/confetti.js"></script>
|
||
|
</body>
|
||
|
</html>
|