You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1.5 KiB

{% extends "base.html" %}
{% block content %}
<p>
WOWlet is a free, open-source Wownero wallet for Linux, macOS, and Windows. Created by the same authors of <a target="_blank" href="https://featherwallet.org">Feather wallet</a>.
</p>
<a href="/features" title="View more screenshots">
<img class="front" src="/theme/image/wowlet2.png">
</a>
<p>
The latest version is <code class="latest_version"></code>.
<a href="download"><b>Download it here</b></a>.
</p>
<h2>Features</h2>
<ul>
<li><b>Safe</b> - Your private keys are encrypted and never leave your computer.</li>
<li><b>Private</b> - Tor is embedded and used to protect your IP.</li>
<li><b>Easy</b> - automatically uses community servers - no need to download the blockchain.</li>
<li><b>Fast</b> - written in C++ with performance and speed in mind.</li>
<li><b>No Lock-In</b> - You can export your private keys and use them in other client(s).</li>
<li><b>Cross-Platform</b> - Supports all 3 major operating systems.</li>
</ul>
<h2>Latest news</h2>
{% for article in articles_page.object_list %}
{% if article.category == "news" %}
<article class="index">
{% include "article-header.html" %}
</article>
{% endif %}
{% endfor %}
{% for article in articles_page.object_list %}
{% if article.category == "changelogs" %}
<article class="index">
{% include "changelog-header.html" %}
</article>
{% endif %}
{% endfor %}
<script>
getVersion((data) => {
$('code.latest_version').html(data['name']);
});
</script>
{% include 'pagination.html' %}
{% endblock content %}