81 lines
3.9 KiB
HTML
81 lines
3.9 KiB
HTML
{% extends "global/layout.html" %}
|
|
{% block title_outer %}{{ _('I2P Anonymous Network') }}{% endblock %}
|
|
{% block title %}{{ _('The Invisible Internet Project') }}{% endblock %}
|
|
{% block metadesc %}{{ _('Anonymous peer-to-peer distributed communication layer built with open source tools and designed to run any traditional Internet service such as email, IRC or web hosting.') }}{% endblock %}
|
|
{% block content_outer %}
|
|
<div class="main">
|
|
<h1>{{ _('What does I2P do for you?') }}</h1>
|
|
<p>{% trans %}The I2P network provides strong privacy protections for communication over the Internet. Many activities that would risk your privacy on the public Internet can be conducted anonymously inside I2P.{% endtrans %}</p>
|
|
<a class="get-i2p" href="{{ url_for('downloads_list', lang=g.lang) }}">{% trans version=ver() %}Get I2P {{ version }}{% endtrans %}</a>
|
|
</div>
|
|
<div class="aside-wrap">
|
|
<div class="aside">
|
|
<h1>{{ _('What is I2P?') }}</h1>
|
|
<ul>
|
|
<li>{% trans -%}
|
|
I2P is a full darknet implementation - a network within a network, and is intended to protect against monitoring by third parties, such as hostile governments or ISPs.
|
|
{% endtrans %}</li>
|
|
<li>{% trans -%}
|
|
I2P is used by many people who care about their privacy, as well as those in high-risk situations. It is designed to protect activists, oppressed people, journalists and whistle-blowers - as well as the average person.
|
|
{% endtrans %}</li>
|
|
<li>{% trans -%}
|
|
I2P runs on Java and is therefore available anywhere Java will run, including desktops, embedded systems (like the Raspberry Pi) and Android phones.
|
|
{% endtrans %}</li>
|
|
<li>
|
|
<a href="{{ site_url('about/intro') }}"><em>{% trans %}Read more…{% endtrans %}</em></a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<div class="aside">
|
|
<h1>{{ _('What can you do with I2P?') }}</h1>
|
|
<ul>
|
|
<li>
|
|
{% trans supported=site_url('docs/applications/supported') -%}
|
|
<a href="{{ supported }}#email">Email</a> Integrated web mail interface, plugin for serverless email.
|
|
{%- endtrans %}
|
|
</li>
|
|
<li>
|
|
{% trans supported=site_url('docs/applications/supported') -%}
|
|
<a href="{{ supported }}#web-browsing">Web browsing</a> Anonymous websites, gateways to and from the public Internet.
|
|
{%- endtrans %}
|
|
</li>
|
|
<li>
|
|
{% trans supported=site_url('docs/applications/supported') -%}
|
|
<a href="{{ supported }}#blogging-and-forums">Blogging and forums</a> Blogging and Syndie plugins.
|
|
{%- endtrans %}
|
|
</li>
|
|
<li>
|
|
{% trans supported=site_url('docs/applications/supported') -%}
|
|
<a href="{{ supported }}#website-hosting">Website hosting</a> Integrated anonymous web server.
|
|
{%- endtrans %}
|
|
</li>
|
|
<li>
|
|
{% trans supported=site_url('docs/applications/supported') -%}
|
|
<a href="{{ supported }}#real-time-chat">Real-time chat</a> Instant messaging and IRC clients.
|
|
{%- endtrans %}
|
|
</li>
|
|
<li>
|
|
{% trans supported=site_url('docs/applications/supported') -%}
|
|
<a href="{{ supported }}#file-sharing">File sharing</a> ED2K and Gnutella clients, integrated BitTorrent client.
|
|
{%- endtrans %}
|
|
</li>
|
|
<li>
|
|
{% trans supported=site_url('docs/applications/supported') -%}
|
|
<a href="{{ supported }}#decentralized-file-storage">Decentralized file storage</a> Tahoe-LAFS distributed filesystem plugin.
|
|
{%- endtrans %}
|
|
</li>
|
|
<li>
|
|
{% trans supported=site_url('docs/applications/supported') -%}
|
|
<a href="{{ supported }}"><em>More supported applications…</em></a>
|
|
{%- endtrans %}
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<div class="aside">
|
|
<a href="{{ url_for('blog_atom', lang=g.lang) }}" class="feed-icon" title="{{ _('I2P Blog ATOM Feed') }}">{{ _('I2P Blog ATOM Feed') }}</a>
|
|
<h1>{% trans %}News & Updates{% endtrans %}</h1>
|
|
{% include "blog/latest.html" %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|