2013-01-23 11:21:07 -08:00
|
|
|
{% extends "mail/email_base.xhtml" %}
|
|
|
|
{% load social_tags %}
|
2011-05-07 17:58:53 -04:00
|
|
|
|
2013-04-10 13:14:04 -07:00
|
|
|
{% block header %}{% endblock %}
|
|
|
|
|
2013-01-23 11:21:07 -08:00
|
|
|
{% block body %}
|
|
|
|
|
2013-04-10 13:14:04 -07:00
|
|
|
<p style="font-size: 24px; 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: 48px; height: 48px;margin: 0 12px 0 0;border-radius: 3px;border: none;float: left"></a> {{ from_name }} is sharing a story with you entitled "<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 %}
|
2013-01-23 11:21:07 -08:00
|
|
|
</p>
|
|
|
|
|
|
|
|
{% if comments %}
|
|
|
|
<p>{{ from_name }} writes:<br />
|
|
|
|
{{ comments }}</p>
|
|
|
|
{% endif %}
|
|
|
|
|
2013-04-10 13:14:04 -07:00
|
|
|
<div style="margin: 24px 0 12px; border-top: 3px solid #404040; padding: 4px 0;"></div>
|
2011-05-07 17:58:53 -04:00
|
|
|
|
2013-01-23 11:21:07 -08:00
|
|
|
<h2>{{ story.story_title }}</h2>
|
2011-05-07 17:58:53 -04:00
|
|
|
|
2013-01-23 11:21:07 -08:00
|
|
|
<a href="{{ story.story_permalink|safe }}">{{ story.story_permalink|safe }}</a>
|
2011-05-07 17:58:53 -04:00
|
|
|
|
2013-01-23 11:21:07 -08:00
|
|
|
<p>{{ story.story_content|safe }}</p>
|
|
|
|
|
|
|
|
{% endblock %}
|