Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion app/views/crops/show.html.haml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
= render 'schema_org', crop: @crop
- content_for :title, @crop.name
- content_for :title do
= @crop.name.titleize
- if @crop.default_scientific_name.present?
= " (#{@crop.default_scientific_name})"
= " growing guide and open data repository"
- content_for :meta_description do
- if @crop.description.present?
= @crop.description
Expand Down
Loading