]> git.openstreetmap.org Git - rails.git/blob - app/views/layouts/notifier.html.erb
c0dbac84280e841931190a4c5476e74eb29fa04b
[rails.git] / app / views / layouts / notifier.html.erb
1 <html>
2   <head>
3     <meta charset="UTF-8"></meta>
4   </head>
5   <body style="padding: 0; margin: 0; font-size: 14px; font-family: 'Helvetica Neue', Arial, sans-serif; color: #222">
6     <table style="background-color: #eee; width: 100%">
7       <tr>
8         <td style="text-align: center; padding: 0px 7px">
9           <table style="max-width: 600px; color: #222; margin-left: auto; margin-right: auto">
10             <tr>
11               <td style="width: 30px; padding: 10px 10px 10px 0px">
12                 <a href="<%= @root_url %>" target="_blank">
13                   <%= image_tag attachments["logo.png"].url, alt: "OpenStreetMap", title: "OpenStreetMap", height: "30", width: "30", border: "0" %>
14                 </a>
15               </td>
16               <%# the "width: 100%" here looks wrong, but I couldn't find a better way of making Outlook give this cell full width %>
17               <td style="width: 100%; padding: 0px; text-align: left">
18                 <%# NB we need "text-decoration: none" twice: GMail only honours it on the <a> but Outlook only on the <strong> %>
19                 <a href="<%= @root_url %>" target="_blank" style="text-decoration: none; color: #000">
20                   <strong style="text-decoration: none; font-size: 18px; font-weight: 600; margin: 0; text-align: left; font-family: 'Helvetica Neue', Arial, sans-serif">OpenStreetMap</strong>
21                 </a>
22               </td>
23             </tr>
24             <tr>
25               <td colspan="2">
26                 <table style="background-color: #fff; color: #222; border: solid 1px #ccc; border-collapse: separate">
27                   <tr>
28                     <td style="text-align: left; padding: 0px 15px 5px 15px">
29                       <%= raw style_message(yield) %>
30                     </td>
31                   </tr>
32                 </table>
33               </td>
34             </tr>
35           </table>
36         </td>
37       </tr>
38       <tr>
39         <td style="text-align: center; font-size: 11px; font-family: 'Helvetica Neue', Arial, sans-serif">
40           <%= yield :footer %>
41           <p style="margin-bottom: 10px">
42             <a href="<%= @root_url %>" target="_blank" style="color: #222">OpenStreetMap</a>
43           </p>
44         </td>
45       </tr>
46     </table>
47   </body>
48 </html>