JabberCard/xhtml/download.xhtml
Schimon Jehudah, Adv. 4553e8aa5c Python : Add instructions for download page;
SVG    : Add icons of XMPP clients;
TOML   : Add a list of XMPP clients;
XHTML  : Add a download page;
XHTML  : Remove unused code.
2024-10-20 17:30:06 +03:00

175 lines
7.4 KiB
HTML

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<!-- Kayla (Céile) XMPP Invite -->
<!-- Zenya (Xenia) XMPP Invite -->
<!-- Fast And Sleek Invite (FASI) -->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
<title>{{brand_name}}: Download</title>
<meta name="description" content="Download an XMPP client and access to the world's foremost and premier publishing and telecommunication platform with top-tier encryption, privacy and security that are to be offered as of yet." />
<meta name="generator" content="Fast And Sleek Invite" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta property="og:description" content="Download an XMPP client and access to the world's foremost and premier publishing and telecommunication platform with top-tier encryption, privacy and security that are to be offered as of yet." />
<meta property="og:image" content="/photo/{{filename}}" />
<meta property="og:site_name" content="{{brand_name}}" />
<meta property="og:title" content="{{title}}" />
<meta property="og:type" content="website" />
<meta property="og:url" content="{{url}}" />
<link rel="alternate icon" href="/img/favicon.ico" type="image/x-icon" />
<link rel="icon" href="/img/favicon.svg" type="image/svg+xml" />
<link rel="stylesheet" href="/css/stylesheet.css" media="screen" type="text/css" />
</head>
<body>
<div id="overlay">
<div id="bar">
<a href="{{brand_site}}">
<img id="logo" src="/img/logo-wordmark-horizontal.svg" />
</a>
<a id="download" href="/download/{{software}}">
{{title}}
</a>
</div>
<div id="action-bar">
<a href="/download/divestos" id="divestos">
Android
</a>
<a href="/download/apple" id="apple">
Apple
</a>
<a href="/download/browser" id="browser">
Browser
</a>
<a href="/download/haiku" id="haiku">
Haiku
</a>
<a href="/download/linux" id="linux">
Linux
</a>
<a href="/download/reactos" id="reactos">
Win
</a>
</div>
<div id="container-of-selection">
{% if client_selection %}
<h1>XMPP Clients For {{title}}</h1>
{% if title == 'Apple' %}
<div id="security-notices">
<span class="notice">
<a href="/download/haiku">
<img src="/img/haiku.svg" />
</a>
<span>
Please refer to <a href="/download/haiku">this page</a>, if
you are using the Haiku operating system.
</span>
</span>
</div>
{% endif %}
{% if title == 'DivestOS' %}
<div id="security-notices">
<span class="notice">
<a href="https://divestos.org">
<img src="/img/divestos.svg" />
</a>
<span>
Due to constant attempts by smartphone manufacturers to
sabotage the functionalities of Android-based XMPP chat
clients; you are advised to install a secure Android ROM such
as <a href="https://divestos.org">DivestOS Mobile</a> to
guarantee a flawless and secure communication experience.
</span>
</span>
<span class="notice">
<a href="https://f-droid.org">
<img src="/img/fdroid.svg" />
</a>
<span>
Due to recent incidents of censoring of XMPP clients from the
Android store, including of an outrageous banning of the app
<a href="https://blabber.im/">blabber.im</a> for grotesque and
preposterous alligations, you are further advised to obtain
your XMPP client from the open source store
<a href="https://f-droid.org">F-Droid</a>.
</span>
</span>
</div>
{% endif %}
{% if title == 'Linux' %}
<div id="security-notices">
<span class="notice">
<img src="/img/tux.svg" />
<span>
The listed XMPP clients, herein, are also usable with the
Linux systems <a href="https://droidian.org">Droidian</a>,
<a href="https://mobian.org">Mobian</a> and
<a href="https://postmarketos.org">postmarketOS</a>, which are
designed for mobile devices.
</span>
</span>
</div>
{% endif %}
<dl id="selection">
{% for client in client_selection %}
<dt>
<a href="{{client['href']}}" id="{{client['iden']}}">
<img class="narrow" src="/img/{{client['iden']}}.svg"/>
<strong>{{client['name']}}</strong>
</a>
</dt>
<dd>
<span>
<span class="text">{{client['about']}}</span>
<div class="features">
{% if 'desktop' in client['features'] %}
<span>🖥️ Desktop</span>
{% endif %}
{% if 'mobile' in client['features'] %}
<span>📱 Mobile</span>
{% endif %}
{% if 'omemo' in client['features'] %}
<!-- img class="icon" src="/img/omemo.svg" / -->
<span>🐟 OMEMO</span>
{% endif %}
{% if 'openpgp' in client['features'] %}
<span>🔐️ OpenPGP</span>
{% endif %}
{% if 'otr' in client['features'] %}
<span>🔏️ OTR</span>
{% endif %}
{% if 'pubsub' in client['features'] %}
<span>📡️ PubSub</span>
{% endif %}
</div>
</span>
<span>
<img class="wide" src="/img/{{client['iden']}}.svg" />
</span>
</dd>
{% endfor %}
<hr/>
<br/>
<dt>
<a href="https://xmpp.org/software/">
<img class="narrow" src="/img/xmpp.svg"/>
<strong>About XMPP</strong>
</a>
</dt>
<dd>
<span>
XMPP is the decentralized, free, open, and private messaging
and publishing protocol that drives the world's top-tier and
largest open IM network, and which allows for end-to-end
encrypted messaging, voice calls, video calls, groups and
more. Join to the community! (est. 1999)
</span>
<span>
<img class="wide" src="/img/xmpp.svg" />
</span>
</dd>
</dl>
{% endif %}
</div>
</div>
</body>
</html>