diff --git a/rhodecode/config/routing.py b/rhodecode/config/routing.py --- a/rhodecode/config/routing.py +++ b/rhodecode/config/routing.py @@ -36,7 +36,8 @@ def make_map(config): #MAIN PAGE map.connect('hg_home', '/', controller='hg', action='index') - + map.connect('bugtracker', "http://bitbucket.org/marcinkuzminski/rhodecode/issues", _static=True) + map.connect('gpl_license', "http://www.gnu.org/licenses/gpl.html", _static=True) #ADMIN REPOSITORY REST ROUTES with map.submapper(path_prefix='/_admin', controller='admin/repos') as m: m.connect("repos", "/repos", diff --git a/rhodecode/public/css/style.css b/rhodecode/public/css/style.css --- a/rhodecode/public/css/style.css +++ b/rhodecode/public/css/style.css @@ -1254,6 +1254,13 @@ padding:15px 25px 15px 0; color:#FFF; font-weight:700; } +#footer div#footer-inner .footer-link { +float:left; +padding-left:10px; +} +#footer div#footer-inner .footer-link a { +color:#FFF; +} #login div.title { width:420px; diff --git a/rhodecode/templates/base/base.html b/rhodecode/templates/base/base.html --- a/rhodecode/templates/base/base.html +++ b/rhodecode/templates/base/base.html @@ -62,7 +62,11 @@