pharmacy/templates/about/index.html

83 lines
3.9 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
{# head content #}
<title>{{ title }}</title>
<!-- css style -->
<link rel="preload" href="/style.css" as="style">
<link rel="stylesheet" href="/style.css">
<!-- metadata -->
<meta charset="UTF-8">
<meta name="description" content="{{ description }}">
<!-- link preview card -->
<meta name="og:title" content="{{ title }}">
<meta name="twitter:title" content="{{ title }}">
<meta name="og:description" content="{{ description }}">
<meta name="twitter:description" content="{{ description }}">
<!-- display settings & favicon -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="/assets/pill.svg">
</head>
<body>
<h1>{{ title }}</h1>
{# Navigation #}
<nav class="menu">
<ul>
<li><a {% if home.active %}class="active"{% endif %} href="{{ home.href }}">{{ home.text }}</a></li>
<li><a {% if about.active %}class="active"{% endif %} href="{{ about.href }}">{{ about.text }}</a></li>
<li class="dropdown">
<a {% if products.active %}class="active"{% endif %} href="{{ products.href }}" class="dropbtn">{{ products.text }}</a>
<div class="dropdown-content">
{% for product in product_classes %}
<a href="{{product.href}}">{{product.text}}</a>
{% endfor %}
</div>
</li>
<li><a {% if contact.active %}class="active"{% endif %} href="{{ contact.href }}">{{ contact.text }}</a></li>
</ul>
</nav>
<h2>{{ subtitle }}</h2>
{# articles #}
<p>We're a queer, anarcho-communist, collectively-owned pharmacy.<br>
We produce & distribute high-quality and cheap HRT, medical equipment, and other drugs.<br>
Please go to our <a class="inline" href="/contact">contact</a> page if you have any questions, or would like to place an order.</p>
<p>By purchasing our products, you're helping us manufacture and distribute HRT to people.</b>
We need to pay for raw ingredients, tools, and other supplies.<br>
We are not a large pharmaceutical company, just a small group of queers who enjoy doing this.</p>
<p>This website is optimized for speed & privacy.<br>
We will never share your information with any third-parties.<br>
We only keep what details are necessary.<br>
We encourage the use of encryption to secure communications.<br>
This site can be used completely without javascript.
There are only some optional scripts on product pages to automatically fetch price/stock info.<br>
It only makes one GET request per page, on the same domain of this site.
If you are disabling javascript, buttons will appear so that you can manually fetch the info.<br>
A single private cookie is used on the contact page to store the CAPTCHA answer.</p>
<h3>Reviews</h3>
<p>Trust is important for any sort of online market, however we don't, and do not plan to, have any on-site review/comment system.<br>
Not only would this require lot's of moderation to prevent abuse, but there's nothing stopping us from creating fake reviews.<br>
We'd reccomend checking reviews on other sites, or getting info from a trusted person. This way the review can be trusted more.<br>
We encourage you to create reviews of us though! It will help our reputation, and help spread us to help more people.</p>
<h3>Ordering</h3>
<p>You can place an order by email, XMPP, or through our website.<br>
For payment, we only accept Monero (XMR) at the moment.</p>
<p>In your message, please specify the products & amounts you wish to purchase.<br>
We will respond with the exact amount to pay, as well as the address to send payment to.</p>
<p>If you cannot afford it, contact us and we can work something out. We will try our best to make HRT affordable and available to everyone who needs it<br>
We should also be able to make custom dosages/amounts.</p>
</html>