15 lines
349 B
Ruby
15 lines
349 B
Ruby
# Helper for the lug views
|
|
module LugsHelper
|
|
def set_lug_meta
|
|
set_meta_tags \
|
|
description: @lug.url,
|
|
DC: { title: @lug.name },
|
|
geo: {
|
|
region: @lug.related_region,
|
|
placename: @lug.city,
|
|
position: "#{@lug.related_city.try :latitude};" \
|
|
+ "#{@lug.related_city.try :longitude}"
|
|
}
|
|
end
|
|
end
|