Site/programmer/templates/emails/new_article_notification.html

16 lines
878 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
</head>
<body>
<h2>Здравствуйте!</h2>
<p>На сайте <strong>{{ site_name }}</strong> вышла новая статья:</p>
<h3><a href="{{ site_url }}{{ article.get_absolute_url }}">{{ article.title }}</a></h3>
<p>{{ article.content|truncatewords:50|safe }}</p>
<p>Читать полностью: <a href="{{ site_url }}{{ article.get_absolute_url }}">{{ site_url }}{{ article.get_absolute_url }}</a></p>
<hr>
<p style="color: #666; font-size: 12px;">Вы получили это письмо, потому что подписаны на уведомления о новых статьях.</p>
<p style="color: #666; font-size: 12px;">Отписаться можно в <a href="{{ site_url }}{% url 'profile' %}">личном кабинете</a>.</p>
</body>
</html>