67 lines
3.4 KiB
HTML
67 lines
3.4 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">
|
|
<img src="{{ url_for('static', filename='images/undraw_connected_world.svg') }}" class="home_splash_image" />
|
|
<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>{% trans %}What is I2P?{% endtrans %}</h1>
|
|
<ul>
|
|
<li>{% trans -%} I2P is an anonymous network built on top of the internet.
|
|
It allows users to create and access content and build online
|
|
communities on a network that is both distributed and dynamic. It is
|
|
intended to protect communication and resist monitoring by third parties
|
|
such as ISPs.
|
|
{% endtrans %}</li>
|
|
<li>{% trans -%}Aside from anonymizing traffic within the network, I2P
|
|
functions with the same capabilities as the Internet, however its design
|
|
and decentralization create a censorship resistant environment for the
|
|
free-flow of information.
|
|
{% endtrans %}</li>
|
|
<li>{% trans -%}Mirrored sites hosted on the network allow access to news
|
|
outlets and other resources in areas where information is being filtered
|
|
or denied. Online communities wishing to organize in
|
|
restrictive environments can do so anonymously to mitigate political
|
|
threat and protect each other.
|
|
{% endtrans %}</li>
|
|
<li>
|
|
<a href="{{ site_url('about/intro') }}"><em>{% trans %}Read more…{% endtrans %}</em></a>
|
|
</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 class="aside">
|
|
<h1>{% trans %}Conferences Calendar 2020{% endtrans %}</h1>
|
|
<p>I2P Developers will be visiting these conferences this year:</p>
|
|
<p><b>Upcoming:</b></p>
|
|
<ul>
|
|
<li>Conference attendance is limited at this time due to COVID-19, and
|
|
many conferences have been postponed or canceled. This section will
|
|
be updated when the situation becomes clearer.</li>
|
|
</ul>
|
|
<p><b>Past:</b></p>
|
|
<ul>
|
|
<li>Chaos Communications Congress (December 27-30 2019, Leipzig, Germany)</li>
|
|
<li>Our Networks Conference (September 20-22 2019, Toronto, Canada)</li>
|
|
<li>DEF CON 27 (August 8-11 2019, Las Vegas, Nevada)</li>
|
|
<li>USENIX FOCI (August 13, 2019, Santa Clara, California)</li>
|
|
<li>Internet Freedom Festival (April 1-5 2019, Valencia, Spain)</li>
|
|
<li>RightsCon (June 11-14 2019, Tunis, Tunisia)</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|