63 lines
3.6 KiB
HTML
63 lines
3.6 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/pexels-jakub-novacek.jpg') }}" class="home_splash_image" />-->
|
|
<h1>{{ _('What does I2P do for you?') }}</h1>
|
|
<p>{% trans %}The Invisible Internet is a privacy by design, people-powered network. It is a truly free and anonymizing Internet alternative. Get 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 %}The Invisible Internet Project (I2P) is a fully encrypted private network layer that
|
|
has been developed with privacy and security by design in order to provide protection for your
|
|
activity, location and your identity. The software ships with a router that connects you to the
|
|
network and applications for sharing, communicating and building. {%- endtrans %}</li>
|
|
</ul>
|
|
<h1>{% trans %}I2P Cares about Privacy{% endtrans %}</h1>
|
|
<ul>
|
|
<li>{% trans %}The Invisible Internet values privacy and consent. It is about your choice to share,
|
|
your platform to own, and the connections you want to make. It is privacy by design, plain, simple
|
|
and truly free. Additionally I2P offers resistance to analysis and blocking by censors.{%- endtrans %}</li>
|
|
<li>{% trans %}I2P hides the server from the user and the user from the server. All I2P traffic is
|
|
internal to the I2P network. It does not connect you with the internet, but it is a layer on top of
|
|
the Internet. It uses encrypted, nested tunnels between you and your peers to assure that no one can
|
|
see where traffic is coming from, where it is going or what the contents are. {%- 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 %}
|