e_paper/app/views/admin/e_papers/emailer.html.erb

15 lines
279 B
Plaintext

<% paper = @data["paper"] %>
<!DOCTYPE html>
<html>
<head>
<title><%= paper.title %></title>
</head>
<body>
<h2><a href="#"><%= paper.title %></a></h2>
<ol>
<% paper.topics.each do |topic| %>
<li><a href=""><%= topic.episode %></a></li>
<% end %>
</ol>
</body>
</html>