long arsd problem

Hey John,

Rails figures out that your ‘log’ object in your view is, in truth, a Post object. As such the url it generates is equivalent to post_path(log).

You’ll want to edit your index template as follows:

<%= link_to 'read more...', log_path(log) %>

Regards, Gustav Paul

Thank you very very much!