NewsBlur/templates/mail/email_story_notification.xhtml

32 lines
1.2 KiB
HTML
Raw Normal View History

{% extends "mail/email_base.xhtml" %}
{% load social_tags utils_tags %}
{% block header %}{% endblock %}
{% block body %}
<p style="font-size: 14px; color:#555555; margin-top: 0;margin-bottom: 10px;padding-top:0px;line-height: 28px;font-weight: bold">
<img src="{{ feed.favicon_url_fqdn }}" style="width: 16px;height: 16px;vertical-align: middle; "> {{ feed.feed_title }}
</p>
<div style="margin: 24px 0 12px; border-top: 3px solid #404040; padding: 4px 0;"></div>
<h2><a href="{{ story.story_permalink|safe }}" style="color: #404070;text-decoration: none;">{{ story.story_title }}</a></h2>
<p>{{ story.story_content|safe }}</p>
<a href="{{ story.story_permalink|safe }}">{{ story.story_permalink|safe }}</a>
<div style="margin: 24px 0 12px; border-top: 3px solid #404040; padding: 4px 0;"></div>
{% endblock %}
{% block footer %}
<tr>
<td>
<p style="font-size:12px;text-align: center;">
You received this because you have <a href="http://{% current_domain %}/site/{{ feed.pk }}/{{ feed.feed_title|slugify }}?next=notifications" style="text-decoration:none;">email notifications for {{ feed.feed_title }}</a>.
</p>
</td>
</tr>
{% endblock footer %}