You should use the link() macro for all internal links;
or, if you prefer, you can use the Catalyst.uri_for()
directly to construct your own.
link("text for link", "/uri_for/path")
# will output
<a title="text for link"
href="http://ego.perlperl.com/ego/uri_for/path">text for link</a>
# to get paths relative to the current action, leave off the leading slash
link("About Ego", "ego")
# will output
<a title="About Ego"
href="http://ego.perlperl.com/ego/admin/manual/ego">About Ego</a>