Is this the right way to do a nested navigation?
<dl>
<dt>Struktur</dt>
<dd>
<ul id="structure">
<li><a href="/module/structure/add">Hinzufügen</a></li>
<li><a href="/module/structure/index">Auflisten</a></li>
</ul>
</dd>
<dt>Nachrichten</dt>
<dd>
<ul id="messages">
<li><a href="/module/messages/add">Schreiben</a></li>
<li><a href="/module/messages/directory">Ordner</a></li>
<li><a href="/module/messages/index">Auflisten</a></li>
</ul>
</dd>
</dl>
I agree with n1313, it really depends what you mean by “right way”.
If you do want a nit-picky answer: Strictly speaking, “Hinzufügen” and “Auflisten” are not the definition of “Struktur”, so using a
<dl>list to structure those elements is probably not The Right Way™. A simple nested<ul>list might be better.