send_message.html.erb 529 B

123456789101112131415161718192021
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
  5. </head>
  6. <body>
  7. <% if @headline %>
  8. <h1><%= sanitize @headline %></h1>
  9. <% end %>
  10. <% @groups.each do |group| %>
  11. <div style='margin-bottom: 10px;'>
  12. <div><%= sanitize group[:title] %></div>
  13. <% group[:entries].each do |entry| %>
  14. <div style='margin-left: 10px;'>
  15. <%= sanitize entry %>
  16. </div>
  17. <% end %>
  18. </div>
  19. <% end %>
  20. </body>
  21. </html>