-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnews.eruby
executable file
·34 lines (26 loc) · 1.06 KB
/
news.eruby
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Atom 1.0 Feed Viewer</title>
<link href="files/stylesheet.css" media="all" rel="Stylesheet" type="text/css" />
</head>
<body>
<div id="container">
<div id="wrapper">
<div id="content">
<div class="section">
<p><%= elements.size-1 %> stories. Generated: <%= Time.now.strftime("%m/%d/%Y at %I:%M%p") %></p>
<p>Feed: <a href="<%= feed["link"] %>"><%= feed["title"] %></a> </p>
<% for i in (1..elements.length-1) %>
<div class="section details">
<h3><a href="<%= elements[i]["link"] %>"><%= elements[i]["title"] %></a></h3>
<p style="color:#444;font-size:90%"><%= elements[i]["content"] %></p>
<p style="color:#444;font-size:90%"><%= elements[i]["summary"] %></p>
</div>
<% end %>
</div>
</div></div></div>
<br /><br />
</body>
</html>