Sha256: 6474820349b0a153ecadd4fbb12c9183443182e507d03accf6638171ff850dee

Contents?: true

Size: 468 Bytes

Versions: 3

Compression:

Stored size: 468 Bytes

Contents

%h1= @user.profile.blog_title

- @blogs.each do |blog|
  .entry
    .entry-title= link_to blog.title, resource_url(blog)

    .date Posted on #{blog.created_at}
    .blog_body!= blog.body
    .comments
      %a{:href => "#"} 3 comments


- if current_user.try(:id) == @user.id
  = link_to 'New Blog Post', new_user_blog_path(@user)

= will_paginate @blogs

- content_for(:tags) do
  - for tag in tags
    %li= link_to tag.name, user_blogs_path(@user, :tag=>tag.name)

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
wheels-0.0.38 app/views/blogs/index.html.haml
wheels-0.0.37 app/views/blogs/index.html.haml
wheels-0.0.36 app/views/blogs/index.html.haml