blob: 269c495f95ddaddc7df8646d61c136f1df80f0b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE html>
<html lang='en'>
<head>
<link rel='stylesheet' type='text/css' href='/style.css'>
</head>
<body>
<h1><%= @dir %>
<form action='<%= @alt_dir %>' method='get'>
<button><%= @alt_name %></button>
</form>
</h1>
<% @threads.each do |item| %>
<%= html item %>
<% end %>
<% if @dir == 'inbox' %>
<form action='delete_all' method='post'>
<button>Delete all</button>
</form>
<% end %>
</body>
</html>
|