16 lines
410 B
Ruby
16 lines
410 B
Ruby
# frozen_string_literal: true
|
|
|
|
module ApplicationHelper
|
|
def git_hash
|
|
exec 'git rev-parse --short HEAD'
|
|
end
|
|
|
|
def meta_description
|
|
@page_description || 'mintbooru is an imageboard for all types of art. Whether it\'s digital, traditional, photography, cosplay, or something else, it\'s welcome here.'
|
|
end
|
|
|
|
def page_title
|
|
@page_title || 'An imageboard that\'s a little more social'
|
|
end
|
|
end
|