From 81bda61f7e2559676d7e73fda9fb9eb2e76dcf66 Mon Sep 17 00:00:00 2001 From: str4d <str4d@mail.i2p> Date: Fri, 25 Oct 2013 21:27:34 +0000 Subject: [PATCH] Split research questions into new page, start of ticket #1087 --- i2p2www/pages/global/nav.html | 1 + i2p2www/pages/site/research/index.html | 8 -------- i2p2www/pages/site/research/questions.html | 9 +++++++++ 3 files changed, 10 insertions(+), 8 deletions(-) create mode 100644 i2p2www/pages/site/research/questions.html diff --git a/i2p2www/pages/global/nav.html b/i2p2www/pages/global/nav.html index 5b531cbde..7fd21a216 100644 --- a/i2p2www/pages/global/nav.html +++ b/i2p2www/pages/global/nav.html @@ -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> diff --git a/i2p2www/pages/site/research/index.html b/i2p2www/pages/site/research/index.html index 8e9144735..e4cf2601f 100644 --- a/i2p2www/pages/site/research/index.html +++ b/i2p2www/pages/site/research/index.html @@ -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 -%} diff --git a/i2p2www/pages/site/research/questions.html b/i2p2www/pages/site/research/questions.html new file mode 100644 index 000000000..68261c0b4 --- /dev/null +++ b/i2p2www/pages/site/research/questions.html @@ -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 %} -- GitLab