blob: 3a245a940d9fb0b9c3ace2cbaab7c779e784865a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!DOCTYPE html>
<html lang='en'>
<head>
<link rel='stylesheet' type='text/css' href='/style.css'>
</head>
<body>
<% @inbox.each do |item| %>
<%= erb :item %>
<hr>
<% end %>
</body>
</html>
|