Files
edx-platform/lms/templates/text-me-the-app.html
Waheed Ahmed efe4120b8f Create custom Text Me the App landing page.
Rebrand the branch.io text me the app landing page to reflect edX's style.

LEARNER-2730
2017-12-13 17:10:32 +05:00

21 lines
438 B
HTML

## mako
<%page expression_filter="h"/>
<%inherit file="main.html" />
<%namespace name='static' file='static_content.html'/>
<%!
from django.utils.translation import ugettext as _
from openedx.core.djangolib.markup import HTML
%>
<%block name="title">
<title>${_("Text Me The App")}</title>
</%block>
<div class="text-me-content">
<div class="container text-me-container">
${HTML(fragment.body_html())}
</div>
</div>