diff --git a/app/views/layouts/site.rhtml b/app/views/layouts/site.rhtml index 105244611..3a80c33a6 100644 --- a/app/views/layouts/site.rhtml +++ b/app/views/layouts/site.rhtml @@ -85,8 +85,8 @@
<%= t 'layouts.intro_3', - :ucl => '' + t('layouts.intro_3_ucl') + '', - :bytemark => '' + t('layouts.intro_3_bytemark') + '' %> + :ucl => link_to(t('layouts.intro_3_ucl'), "http://www.vr.ucl.ac.uk"), + :bytemark => link_to(t('layouts.intro_3_bytemark'), "http://www.bytemark.co.uk") %>
<% end %> diff --git a/app/views/site/index.rhtml b/app/views/site/index.rhtml index de1de19f4..da90caf57 100644 --- a/app/views/site/index.rhtml +++ b/app/views/site/index.rhtml @@ -24,9 +24,9 @@<%= - I18n.t('site.index.license.notice', - :license_name => ('' + t('site.index.license.license_name') + ''), - :project_name => ('' + t('site.index.license.project_name') + '')) + t'site.index.license.notice', + :license_name => link_to(t('site.index.license.license_name'), t('site.index.license.license_url')), + :project_name => link_to(t('site.index.license.project_name'), t('site.index.license.project_url')) %> |