blob: 4da9a5d01a05d8220ffc72d7e53342e3e0d9f38f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
Web log entries
===============
<style>
li {
list-style-type: none;
}
time {
color: #AAAAAA;
font-family: monospace;
}
</style>
<% @pages.sort_by{|p| p.date}.reverse.each do |a| %>
* <time><%= a.date.strftime('%Y-%m-%d') %></time> - [<%= a.title %>](./<%= a.slug %>.html)<% end %>
|