Files
edx-platform/common/djangoapps/student/templates/unsubscribed_emails/email/base.html
2023-07-13 18:13:14 +05:00

15 lines
367 B
HTML

{% load i18n %}
{% get_current_language as LANGUAGE_CODE %}
<!DOCTYPE html>
<html lang="{{ LANGUAGE_CODE }}">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body style="font-family:Arial,'Helvetica Neue',Helvetica,sans-serif;font-size:14px;line-height:150%;margin:auto">
{% block body %}
{% endblock body %}
</body>
</html>