Kohana (and probably other frameworks) allow you get a route and echo its URL, creating routes that are easy to maintain.
<a href="<?php echo url::base() . Route::get('contact'); ?>">Contact</a>
Is this OK to have in the view, or should I assign it to a variable, and then pass the view the variable?
Thanks