|
<% 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> |