Files
I2P_Website/i2p2www/pages/site/browser/_front.html
2020-03-03 21:27:08 +00:00

113 lines
5.7 KiB
HTML

{% extends "global/layout.html" %}
{% block title %}{% trans bname=browser_name(), bsuff=browser_postname()%}{{ bname }} {{ bsuff }} {% endtrans %}{% endblock %}
{% block content_nav %}
<ol>
<li style="list-style: none; display: inline">
<h4>{{ _('Navigation') }}</h4>
</li>
<li style="list-style: none;">{% trans intro=get_url('browser_intro') %}<a href="{{ intro }}">About</a>{% endtrans %}</li>
<li style="list-style: none;">{% trans download=get_url('browser_download') %}<a href="{{ download }}">Download</a>{% endtrans %}</li>
<!--<li style="list-style: none;">{% trans troubleshooting=get_url('browser_troubleshooting') %}<a href="{{ troubleshooting }}">Troubleshooting</a>{% endtrans %}</li>-->
<!--<li style="list-style: none;">{% trans known_issues=get_url('browser_known_issues') %}<a href="{{ known_issues }}">Known Issues</a>{% endtrans %}</li>-->
<li style="list-style: none;">{% trans releasenotes=get_url('browser_releasenotes') %}<a href="{{ releasenotes }}">Release Notes</a>{% endtrans %}</li>
<li style="list-style: none;">{% trans roadmap=get_url('browser_roadmap') %}<a href="{{ roadmap }}">Road Map</a>{% endtrans %}</li>
<li style="list-style: none;">{% trans develop=get_url('browser_develop') %}<a href="{{ develop }}">Get Involved</a>{% endtrans %}</li>
<li style="list-style: none;">{% trans donate=site_url('get-involved/donate') %}<a href="{{ donate }}">Donate</a>{% endtrans %}</li>
</ol>
{% endblock %}
{% macro browser_download(name, icon, dlink) -%}
<div class="browser-front-download">
<div class="download-details">
<!--<img class="browser-clip-circle" src="{{ url_for('static', filename=icon) }}" alt="{{ name }}" title="{{ name }}" />-->
<a class="get-i2p-browser" href="{{ dlink }}">{{ caller() }}</a>
{% trans download=get_url('browser_download'), bname=browser_name() %}<a href="{{ download }}">Click here to download {{ bname }} in another language or platform</a>{% endtrans %}
</div>
</div>
{%- endmacro %}
{% block content %}
<section class="browser-front-wrapper">
<h1>{% trans bname=browser_name(), bsuff=browser_postname()%}{{ bname }} {{ bsuff }}{% endtrans %}</h1>
</section>
<section class="browser-onboarding">
<div class="row">
<div class="row-image">
<img src="{{ url_for('static', filename='images/browser/routing.svg') }}" />
</div>
<div class="row-text">
<h4>{% trans bname=browser_name() %} {{ bname }} {% endtrans %}</h4>
<p>
<strong>{% trans bname=browser_name(), bsuff=browser_postname() %}{{ bname }} {{ bsuff }} is on hiatus for the
next six months.</strong> I2P Browser was originally a 6 month project, which we have brought as far as we can
without reevaluating the resources required to take it further. The project roadmap goals for the next
6 months will focus on modernizing the applications that were highlighted in the I2P Browser once the
router was bundled. Browser development will potentially resume mid year. This page will be left up for
informational purposes.{% endtrans %}
</p>
<p>
{% trans %}Thank you to everyone who tested the Beta releases - it is obvious that there is a need for this product. We encourage everyone
to continue with feedback for the I2P Browser.{% endtrans %}
</p>
{% trans %}You may want to consider one of the following alternatives:{% endtrans %}
</p>
<ul>
<li> <strong><a href="/firefox">{% trans %}I2P Firefox Profile for Windows:{% endtrans %}</a></strong>
{% trans %} If you are using Windows, the recommended way of accessing I2P is using the Firefox profile.{% endtrans %}
</li>
<li> <strong><a href="placeholder">{% trans %}I2P in Private Browsing Mode for Firefox:{% endtrans %}</a></strong>
{% trans %} This cross-platform webextension configures an isolated contextual identity for using I2P and for
each I2P application. It was designed to work with or without I2P Browser.{% endtrans %}
</li>
</ul>
<p>
{% trans bname=browser_name(), bsuff=browser_postname() %}Old versions of {{ bname }} {{ bsuff }} are
still available from the link below. <strong>They should be regarded as unsafe to use, and are only here for
historical and experimental purposes.</strong>
{% endtrans %}
</p>
</div>
</div>
</section>
<section class="browser-front-wrapper">
{%- if detected_os == 'windows' -%}
{%- set version = browser_version() -%}
{%- set bname = browser_name()-%}
{%- set name = 'Windows' -%}
{%- set icon = 'images/browser/garlic.svg' -%}
{%- set link = 'https://download.i2p2.de/experimental/i2pbrowser-'+version+'/windows64/i2pbrowser-install-win64-2.0-'+''+version+''+'_en-US.exe' -%}
{% call browser_download(name, icon, link) %}
Get {{ bname }} for Windows
{% endcall %}
{%- elif detected_os == 'macosx' -%}
{%- set version = browser_version() -%}
{%- set bname = browser_name()-%}
{%- set name = 'Mac OS X' -%}
{%- set icon = 'images/browser/garlic.svg' -%}
{%- set link = 'https://download.i2p2.de/experimental/i2pbrowser-'+version+'/macosx64/I2PBrowser-2.0-'+version+'-osx64_en-US.dmg' -%}
{% call browser_download(name, icon, link) %}
Get {{ bname }} for Mac OS X
{% endcall %}
{%- elif detected_os == 'linux' -%}
{%- set version = browser_version() -%}
{%- set bname = browser_name()-%}
{%- set name = 'Linux' -%}
{%- set icon = 'images/browser/garlic.svg' -%}
{%- set link = 'https://download.i2p2.de/experimental/i2pbrowser-'+version+'/linux64/i2p-browser-linux64-2.0-'+version+'_en-US.tar.xz' -%}
{% call browser_download(name, icon, link) %}
Get {{ bname }} for Linux x64
{% endcall %}
{%- endif -%}
</section>
{% endblock %}