deblan.tv/src/Deblan/Bundle/BlogBundle/Resources/views/Mail/followerNewComment.html.twig
2015-03-02 21:57:49 +01:00

25 lines
606 B
Twig

{% extends "::mail.html.twig" %}
{% block body %}
<tr>
<td>
<p>
Salut {{ follower.comment.author }}, <br /><br />
Un nouveau commentaire a été ajouté à l'article « <a href="{{ host ~ cms_path('post', {post: post.slug, id: post.id}) }}">{{ post.title }}</a> ».
</p>
<p>Bonne journée :)</p>
</td>
</tr>
{% endblock %}
{% block title %}
Nouveau commentaire # {{ parent() }}
{% endblock %}
{% block footer %}
{% set unactive = host ~ cms_path('subscription', {postFollower: follower.key, active: 0}) %}
<a href="{{ unactive }}">Résilier mon abonnement</a>
{% endblock %}