mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
26 lines
1.2 KiB
HTML
26 lines
1.2 KiB
HTML
![]() |
{% extends "mail/email_base.xhtml" %}
|
||
|
{% load social_tags %}
|
||
|
|
||
|
{% block header %}{% endblock %}
|
||
|
|
||
|
{% block body %}
|
||
|
|
||
|
<p style="font-size: 18px; color:#555555; margin-top: 0;margin-bottom: 10px;padding-top:0px;line-height: 28px;">
|
||
|
<a href="{{ share_user_profile.blurblog_url }}"><img src="{{ share_user_profile.email_photo_url }}" style="width: 36px; height: 36px;margin: 0 12px 0 0;border-radius: 1px;border: none;float: left;vertical-align: middle"></a> {{ from_name }} shares "<a href="{{ story.story_permalink|safe }}">{{ story.story_title }}</a>"{% if feed %} from <img src="{{ feed.favicon_url_fqdn }}" style="width: 16px;height: 16px;vertical-align: middle"> {{ feed.feed_title }}{% endif %}{% if comments %}:</p>
|
||
|
<p>{{ comments }}
|
||
|
{% endif %}
|
||
|
</p>
|
||
|
|
||
|
<div style="margin: 24px 0 12px; border-top: 3px solid #404040; padding: 4px 0;"></div>
|
||
|
|
||
|
<h2>{{ story.story_title }}</h2>
|
||
|
|
||
|
<a href="{{ story.story_permalink|safe }}">{{ story.story_permalink|safe }}</a>
|
||
|
|
||
|
<p>{{ story.story_content|safe }}</p>
|
||
|
|
||
|
<div style="margin: 24px 0 12px; border-top: 3px solid #404040; padding: 4px 0;"></div>
|
||
|
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block footer %}{% endblock footer %}
|