22 lines
330 B
Ruby
22 lines
330 B
Ruby
# frozen_string_literal: true
|
|
|
|
module ButtsAreCool
|
|
class ApplicationController < ::ApplicationController
|
|
def site_domain
|
|
ButtsAreCoolRoutes::DOMAIN
|
|
end
|
|
|
|
def plausible_domain
|
|
"butts-are.cool"
|
|
end
|
|
|
|
def site_title
|
|
"Butts Are Cool"
|
|
end
|
|
|
|
def site_color
|
|
"#2C2F33"
|
|
end
|
|
end
|
|
end
|