pharmacy/templates/index.html

73 lines
3.6 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 #}
<h3>Stay Safe!</h3>
<p>Check what URL you're on! The only valid URL's are <a class="inline" href="/mirrors.txt">here</a> according to the dark.fail <a class="inline" href="https://dark.fail/spec/omg.txt">Onion Mirror Guidelines</a> <a class="inline" href="http://darkfailenbsdla5mal2mxn2uz66od5vtzd5qozslagrfzachha3f3id.onion/spec/omg.txt">(mirror)</a>.<br>
That message will be signed by our <a class="inline" href="/pgp.txt">PGP</a> key, along with a <a class="inline" href="/canary.txt">canary</a>, which you can verify <a class="inline" href="https://dark.fail/pgp">here</a> <a class="inline" href="http://darkfailenbsdla5mal2mxn2uz66od5vtzd5qozslagrfzachha3f3id.onion/pgp">(mirror)</a>.</p>
<p>Monero is the reccomended cryptocurrency for privacy. <a class="inline" href="http://j6s7ohobyvhy3jnhocw5agl7iwcmgi5zm3d6isjl62wflufibox4exid.onion/book-club/cryptonote.pdf">(cryptonote)</a><br>
Only use the address we send to you directly, to ensure you're not being scammed.<br>
</p>
<p>Please use PGP for sending/recieving messages to ensure their authenticity, and to protect the contents.<br>
Age can also be used for encryption, but cannot be used for signing.<br>
While email is insecure, it is the easist communication platform, and most people have it, which is why we use it.<br>
And with PGP, while still not the best, is still good enough for our purposes.<br>
However if you would like, you can contact us over XMPP using OMEMO for more security.</p>
<h3>Privacy Policy</h3>
<p><b>Note: This is not a legal document!</b></p>
<p>IP's on clearnet site are stored for maximum 1 week before deletion, for anti-spam purposes.<br>
Contact details, messages, etc. are stored in plaintext. You can request this info to be deleted.<br>
Messages sent over email/xmpp will be subject to whatever security/privacy policies the servers used have.<br>
Use encryption to prevent the site admins from reading messages.<br>
Order details and addresses are stored only for as long as needed.<br>
Information is not accessible to anyone other that the site admins.</p>
</html>