Split research questions into new page, start of ticket #1087

This commit is contained in:
str4d
2013-10-25 21:27:34 +00:00
parent 81288592e0
commit 81bda61f7e
3 changed files with 10 additions and 8 deletions

View File

@@ -122,6 +122,7 @@
</ul>
</li>
<li><a href="{{ site_url('research') }}"><div class="menuitem"><span>{{ _('Academic research') }}</span></div></a></li>
<li><a href="{{ site_url('research/questions') }}"><div class="menuitem"><span>{{ _('Open research questions') }}</span></div></a></li>
<li class="has-sub"><div class="menuitem"><span>{{ _('Guides') }}</span></div>
<ul>
<li><a href="{{ site_url('get-involved/guides/new-developers') }}"><div class="menuitem"><span>{{ _('New developers') }}</span></div></a></li>

View File

@@ -19,14 +19,6 @@ original research.
A list of known published papers about I2P is available <a href="{{ papers }}">here</a>.
{%- endtrans %}</p>
<h2>{{ _('Open research questions') }}</h2>
<h3>{{ _('Unidirectional tunnels') }}</h3>
<ul>
<li>What are the benefits of unidirectional tunnels over bidirectional tunnels? What are the tradeoffs?</li>
<li>More details are available <a href="{{ site_url('docs/tunnels/unidirectional') }}">here</a>.</li>
</ul>
<h2>{{ _('Testing Attacks on I2P') }}</h2>
<p>{% trans -%}

View File

@@ -0,0 +1,9 @@
{% extends "global/layout.html" %}
{% block title %}{{ _('Open research questions') }}{% endblock %}
{% block content %}
<h2>{{ _('Unidirectional tunnels') }}</h2>
<ul>
<li>What are the benefits of unidirectional tunnels over bidirectional tunnels? What are the tradeoffs?</li>
<li>More details are available <a href="{{ site_url('docs/tunnels/unidirectional') }}">here</a>.</li>
</ul>
{% endblock %}