forked from I2P_Developers/i2p.www
72 lines
2.6 KiB
HTML
72 lines
2.6 KiB
HTML
{% extends "global/layout.html" %}
|
|
{% block title %}{% trans bname=browser_name()%}{{ bname }}: Get Involved {% endtrans %}{% endblock %}
|
|
{% block content_nav %}
|
|
<ol>
|
|
<li style="list-style: none; display: inline">
|
|
<h4>{{ _('Navigation') }}</h4>
|
|
</li>
|
|
<li style="list-style: none;">{% trans browser_main=get_url('browser_frontpage') %}<a href="{{ browser_main }}">Back to browser front page</a>{% endtrans %}</li>
|
|
</ol>
|
|
{% endblock %}
|
|
|
|
|
|
{% block content %}
|
|
|
|
<h1>{% trans %}Get Involved{% endtrans %}</h1>
|
|
|
|
{% trans bname=browser_name() %}
|
|
<p>
|
|
Like other browsers, {{ bname }} is actually built from a group of tools that
|
|
work together to start and stop applications, configure settings, and secure the
|
|
user against attacks.
|
|
</p>
|
|
{% endtrans %}
|
|
|
|
<h2>{% trans %}Source Code{% endtrans %}</h2>
|
|
|
|
<ul>
|
|
<li>
|
|
<a href="https://github.com/mikalv/i2p-browser-build-scripts">{% trans %}Build Scripts(Github):{% endtrans %}</a>
|
|
{% trans %}Start here to build from source. This is the collection of build scripts that
|
|
gathers the source code for all the components and executes each step of the
|
|
build process.{% endtrans %}
|
|
</li>
|
|
<li>
|
|
<a href="https://github.com/i2p/i2p-browser">{% trans %}Firefox Source Code(Github):{% endtrans %}</a>
|
|
{% trans %}This is the source code of our fork of Firefox LTS, which is in turn based on the
|
|
work of the Tor Browser team and modified for use with I2P.{% endtrans%}
|
|
</li>
|
|
<li>
|
|
<a href="https://github.com/i2p/i2pbutton">{% trans %}I2PButton Browser Extension(Github):{% endtrans %}</a>
|
|
{% trans %} Start here to experiment with your changes. Many of our essential features
|
|
are facilitated by this plugin.
|
|
{% endtrans %}
|
|
</li>
|
|
</ul>
|
|
|
|
<h2>{% trans %}Essential Documentation{% endtrans %}</h2>
|
|
|
|
<ul>
|
|
<li>
|
|
<a href="http://{{ i2pconv('trac.i2p2.i2p') }}//wiki/I2P_Browser_develop_n_hacks">{% trans bname=browser_name() %}{{ bname }} Development:{% endtrans %}</a>
|
|
{% trans bname=browser_name() %}Meeh's notes on developing and porting features to the {{ bname }}{% endtrans %}.
|
|
</li>
|
|
</ul>
|
|
|
|
<h2>{% trans %}Contact Us{% endtrans %}</h2>
|
|
|
|
<ul>
|
|
<li>
|
|
<a href="http://{{ i2pconv('trac.i2p2.i2p') }}">{% trans %}Bug Tracker{% endtrans %}</a>
|
|
{% trans %}Should you wish to communicate with us on a service other than Github,
|
|
you may contact us via the I2P Bug Tracker.{% endtrans %}
|
|
</li>
|
|
<li>
|
|
<a href="http://{{ i2pconv('lists.i2p') }}/hyperkitty/list/i2p-browser-dev@lists.i2p.email/2019/8/">{% trans %}Mailing List{% endtrans %}</a>
|
|
{% trans bname=browser_name() %} We also have a public mailing list for discussion of the {{ bname }}.{% endtrans %}
|
|
</li>
|
|
</ul>
|
|
|
|
{% endblock %}
|
|
|