Add a circle-R to the initial welcome message
This commit is contained in:
@@ -1,8 +1,11 @@
|
||||
<%page expression_filter="h"/>
|
||||
<%inherit file="main.html" />
|
||||
<%namespace name='static' file='static_content.html'/>
|
||||
<%!
|
||||
from django.utils.translation import ugettext as _
|
||||
from django.core.urlresolvers import reverse
|
||||
|
||||
from openedx.core.djangolib.markup import Text, HTML
|
||||
%>
|
||||
|
||||
<main id="main" aria-label="Content" tabindex="-1">
|
||||
@@ -12,11 +15,11 @@ from django.core.urlresolvers import reverse
|
||||
<div class="title">
|
||||
<div class="heading-group">
|
||||
% if homepage_overlay_html:
|
||||
${homepage_overlay_html}
|
||||
${homepage_overlay_html|n}
|
||||
% else:
|
||||
## Translators: 'Open edX' is a brand, please keep this untranslated. See http://openedx.org for more information.
|
||||
<h1>${_("Welcome to the Open edX platform!")}</h1>
|
||||
## Translators: 'Open edX' is a brand, please keep this untranslated. See http://openedx.org for more information.
|
||||
## Translators: 'Open edX' is a registered trademark, please keep this untranslated. See http://open.edx.org for more information.
|
||||
<h1>${Text(_(u"Welcome to the Open edX{registered_trademark} platform!")).format(registered_trademark=HTML("<sup style='font-size: 65%'>®</sup>"))}</h1>
|
||||
## Translators: 'Open edX' is a registered trademark, please keep this untranslated. See http://open.edx.org for more information.
|
||||
<p>${_("It works! This is the default homepage for this Open edX instance.")}</p>
|
||||
% endif
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user