mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-03-26 02:33:03 -04:00
Adds a meta description tag to the landing, crops, plantings, harvests, seeds, and comments pages. Also creates a new index page for comments.
14 lines
331 B
Plaintext
14 lines
331 B
Plaintext
- content_for :title, "Comments"
|
|
- content_for :meta_description, "Browse and search for comments."
|
|
- content_for :breadcrumbs do
|
|
%li.breadcrumb-item.active= link_to "Comments", comments_path
|
|
|
|
%h1 Comments
|
|
|
|
= will_paginate @comments
|
|
|
|
- @comments.each do |comment|
|
|
= render 'single', comment: comment
|
|
|
|
= will_paginate @comments
|