2024-05-03 03:04:43 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module ButtsAreCool
|
|
|
|
class ApplicationController < ::ApplicationController
|
|
|
|
def site_domain
|
|
|
|
ButtsAreCoolRoutes::DOMAIN
|
|
|
|
end
|
|
|
|
|
2024-07-14 18:48:12 +00:00
|
|
|
def plausible_domain
|
|
|
|
"butts-are.cool"
|
|
|
|
end
|
|
|
|
|
2024-05-03 03:04:43 +00:00
|
|
|
def site_title
|
|
|
|
"Butts Are Cool"
|
|
|
|
end
|
|
|
|
|
|
|
|
def site_color
|
|
|
|
"#2C2F33"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|