Linking between modules 24/04/2015

Linking between modules needs to be done using absolute routes. That means with colon at the beginning of the route. Relative link to a module <a href="{link Foo:Default:default}">link</a> <!-- or --> <a n:href="Foo:Default:default">link</a> This will try to search for that route in current module. Absolute link to a module <a href="{link :Foo:Default:default}">link</a> <!-- or --> <a n:href=":Foo:Default:default">link</a> This will search for the Foo module in root.

Linking between modules needs to be done using absolute routes. That means with colon at the beginning of the route.

<a href="{link Foo:Default:default}">link</a>
<!-- or -->
<a n:href="Foo:Default:default">link</a>

This will try to search for that route in current module.

<a href="{link :Foo:Default:default}">link</a>
<!-- or -->
<a n:href=":Foo:Default:default">link</a>

This will search for the Foo module in root.