<%= link_to 'Home', '/' %> -
<%= link_to 'About', '/about' %> -
<%= link_to 'Subscribe RSS', '/index.rss' %>
Categories:
<%= link_to 'Ruby', '/categories/ruby' %> -
<%= link_to 'Javascript', '/categories/javascript' %>
<% if session[:admin] %>
Admin:
<%= link_to 'Posts', '/admin/posts/' %> -
<%= link_to 'Pages', '/admin/pages' %> -
<%= link_to 'Commits', '/admin/commits' %>
<% if @post %> - <%= link_to 'Edit post', "/admin/edit/#{@post.path}" %><% end %>
<% end %>
<%= @content %>
Archive:
<% for year, month in @blog.archives %>
<%= archive_link year, month %>
<% end %>
<% if @blog.aggregations['flickr'] %>
Interesting Art @ Flickr
<% for pic in @blog.aggregations['flickr'].pics %>
<% end %>
<% end %>
<% if @blog.aggregations['delicious'] %>
Ruby @ Delicious
<% for item in @blog.aggregations['delicious'].items %>
-
<%= link_to item.title, item.link %>
<% end %>
<% end %>