20 lines
489 B
Plaintext
20 lines
489 B
Plaintext
.contain
|
|
%h1
|
|
= @project.title
|
|
- if policy(@project).edit?
|
|
= link_to 'Edit', edit_project_path(@project)
|
|
= render 'shared/follow_form' if current_user.signed_in?
|
|
|
|
.description
|
|
= @project.description
|
|
|
|
.stats
|
|
%p #{@project.followers.count} Followers
|
|
|
|
- if @project.microposts.any?
|
|
%section.microposts
|
|
%h3 Posts #{@project.microposts.count}
|
|
%ol.microposts
|
|
= render @project.microposts
|
|
= will_paginate @project.microposts.paginate(page: params[:page])
|