Skip to content

Commit

Permalink
templates: Use HTML5 doctype for emails.
Browse files Browse the repository at this point in the history
Signed-off-by: Anders Kaseorg <anders@zulip.com>
  • Loading branch information
andersk authored and timabbott committed Apr 21, 2021
1 parent d2706fa commit 7177529
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions templates/zerver/emails/email_base_default.source.html
@@ -1,9 +1,9 @@
{% import 'zerver/emails/compiled/macros.html' as macros %}
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta charset="UTF-8" />
<title>Zulip</title>
</head>
<body>
Expand Down
4 changes: 2 additions & 2 deletions templates/zerver/emails/email_base_messages.html
@@ -1,7 +1,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta charset="UTF-8">
<title>Zulip</title>
</head>
{% if has_preheader %}
Expand Down
2 changes: 1 addition & 1 deletion version.py
Expand Up @@ -45,4 +45,4 @@
# historical commits sharing the same major version, in which case a
# minor version bump suffices.

PROVISION_VERSION = "141.0"
PROVISION_VERSION = "141.1"

0 comments on commit 7177529

Please sign in to comment.