18 lines
273 B
Ruby
18 lines
273 B
Ruby
# frozen_string_literal: true
|
|
|
|
module ButtsAreCool
|
|
class ApplicationController < ::ApplicationController
|
|
def site_domain
|
|
ButtsAreCoolRoutes::DOMAIN
|
|
end
|
|
|
|
def site_title
|
|
"Butts Are Cool"
|
|
end
|
|
|
|
def site_color
|
|
"#2C2F33"
|
|
end
|
|
end
|
|
end
|