teensyweb/
teensyweb/app/models/
teensyweb/app/views/account/
teensyweb/app/views/layouts/
teensyweb/app/views/notifications/
teensyweb/app/views/repository/
teensyweb/config/
teensyweb/config/environments/
teensyweb/db/migrate/
teensyweb/doc/
teensyweb/lib/
teensyweb/public/images/
teensyweb/public/javascripts/
teensyweb/public/stylesheets/
teensyweb/script/
teensyweb/script/performance/
teensyweb/script/process/
teensyweb/test/
teensyweb/test/fixtures/
teensyweb/test/fixtures/notifications/
<div class="app">
  <% @posts.each do |p| %>
    <div class="forum">
      <%= "Subject: #{link_to p.topic.subject, {:action => 'postshow', :id => p.id}}" %><br/>
      <%= "Author: #{p.user.login}" %><br/>
      <%= "Posted: #{ftime p.created_at}" %><br />
      <hr />
      <%= format_post p.data.first(80) %>
    </div>  
  <% end %>
</div>