diff --git a/i2p2www/pages/global/nav.html b/i2p2www/pages/global/nav.html
index 5b531cbdeab31d2d031f4ec5c1fd671834aca76a..7fd21a2169f38dcbec2b0978abbc12da6ee476fd 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 8e91447359f0e8b73ab897f4bd359d04f982ea86..e4cf2601f28ff9f8b013079d9c731d1bf8d61e02 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 0000000000000000000000000000000000000000..68261c0b4bab139911aef7b5a4e21c68864d962c
--- /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 %}