Happy New Year !
[platal.git] / templates / newsletter / nl.FX.mail.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2013 Polytechnique.org                             *}
4 {*  http://opensource.polytechnique.org/                                  *}
5 {*                                                                        *}
6 {*  This program is free software; you can redistribute it and/or modify  *}
7 {*  it under the terms of the GNU General Public License as published by  *}
8 {*  the Free Software Foundation; either version 2 of the License, or     *}
9 {*  (at your option) any later version.                                   *}
10 {*                                                                        *}
11 {*  This program is distributed in the hope that it will be useful,       *}
12 {*  but WITHOUT ANY WARRANTY; without even the implied warranty of        *}
13 {*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *}
14 {*  GNU General Public License for more details.                          *}
15 {*                                                                        *}
16 {*  You should have received a copy of the GNU General Public License     *}
17 {*  along with this program; if not, write to the Free Software           *}
18 {*  Foundation, Inc.,                                                     *}
19 {*  59 Temple Place, Suite 330, Boston, MA  02111-1307  USA               *}
20 {*                                                                        *}
21 {**************************************************************************}
22
23 {config_load file="mails.conf" section="mails_fx"}
24 {if $mail_part eq 'head'}
25 {from full=#from#}
26 {subject text=$issue->title(true)}
27 {if isset(#replyto#)}{add_header name='Reply-To' value=#replyto#}{/if}
28 {if isset(#retpath#)}{add_header name='Return-Path' value=#retpath#}{/if}
29 {elseif $mail_part eq 'text'}
30 {if !$is_mail}
31 <pre style="width : 72ex; margin: auto">
32 {/if}
33 ====================================================================
34 {$issue->title()}
35 ====================================================================
36
37 {$issue->head($user, 'text')}
38
39 {foreach from=$issue->arts key=cid item=arts}
40 --------------------------------------------------------------------
41 *{$issue->category($cid)}*
42 --------------------------------------------------------------------
43
44 {foreach from=$arts item=art}
45 {$art->toText($hash, $user->login())}
46
47 {/foreach}
48 {/foreach}
49
50 {$issue->signature('text')}
51
52 --------------------------------------------------------------------
53 {if $is_mail}
54 Pour faire un don : <http://fondationx.fr/fond/paiement.php>
55 {else}
56 Pour faire un don : &lt;http://fondationx.fr/fond/paiement.php&gt;
57 {/if}
58 Cette lettre est envoyée par la FX grâce aux outils de Polytechnique.org.
59
60 {if $is_mail}
61 archives         : <https://www.polytechnique.org/fxletter>
62 ne plus recevoir : <https://www.polytechnique.org/fxletter/out/{if $hash}{$hash}{else}nohash{/if}/{$issue->id}>
63 {else}
64 archives         : &lt;https://www.polytechnique.org/fxletter&gt;
65 ne plus recevoir : &lt;https://www.polytechnique.org/fxletter/out/{if $hash}{$hash}{else}nohash{/if}/{$issue->id}&gt;
66 {/if}
67
68 {if !$is_mail}
69 </pre>
70 {/if}
71 {elseif $mail_part eq 'html'}
72 {if $is_mail}
73 <?xml version="1.0" encoding="utf-8"?>
74 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
75 <html xmlns="http://www.w3.org/1999/xhtml">
76   <head>
77     <title>Lettre d'information de la Fondation de l'École polytechnique</title>
78     <style type="text/css">
79       {literal}
80       body      { background-color: #ddd; color: #000; }
81       {/literal}
82     <!--
83       {$issue->css()}
84     -->
85     </style>
86   </head>
87   <body>
88     <div class="fx_background">
89 {/if}
90     <div class='fx_mail'>
91       <div class="title">{$issue->title()}</div>
92       <div class="intro">{$issue->head($user, 'html')|smarty:nodefaults}</div>
93       {foreach from=$issue->arts key=cid item=arts name=cats}
94       <h1 class="category"><a id="cat{$cid}"></a>
95         {$issue->category($cid)}
96       </h1>
97       {foreach from=$arts item=art}
98         {$art->toHtml($hash, $user->login())|smarty:nodefaults}
99       {/foreach}
100       {/foreach}
101       <div class="signature">{$issue->signature('html')|smarty:nodefaults}</div>
102       <div class="give"><a href="http://fondationx.fr/fond/paiement.php">Faire un don</a></div>
103       <div class="foot1">
104         Cette lettre est envoyée par la Fondation grâce aux outils de Polytechnique.org.
105       </div>
106       <div class="foot2">
107         [<a href="https://www.polytechnique.org/fxletter">archives</a>&nbsp;|
108         <a href="https://www.polytechnique.org/fxletter/out/{if $hash}{$hash}{else}nohash{/if}/{$issue->id}">ne plus recevoir</a>]
109       </div>
110     </div>
111 {if $is_mail}
112     </div>
113   </body>
114 </html>
115 {/if}
116 {/if}
117
118 {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}