diff --git a/templates/__shared/index.phtml b/templates/__shared/index.phtml
index 1d77faa..96f4c50 100644
--- a/templates/__shared/index.phtml
+++ b/templates/__shared/index.phtml
@@ -44,20 +44,24 @@
'Home',
- '/about' => 'About',
- '/contact' => 'Contact',
- );
if (User::isAuthenticated())
{
- $links['/logout'] = 'Logout';
+ $links = array(
+ '/leaderboards' => 'My Leaderboards',
+ '/contact' => 'Contact Us',
+ '/logout' => 'Logout',
+ );
}
else
{
- $links['/login'] = 'Sign in';
- $links['/join'] = 'Sign up';
+ $links = array(
+ '/' => 'Home',
+ '/about' => 'About',
+ '/contact' => 'Contact Us',
+ '/login' => 'Sign In',
+ '/join' => 'Sign Up',
+ );
}
foreach ($links as $uri => $label)