Make site tagline configurable
This commit is contained in:
parent
629a9e5326
commit
66a1998957
|
@ -4,7 +4,7 @@
|
||||||
.card-body.py-4
|
.card-body.py-4
|
||||||
= render "layouts/messages"
|
= render "layouts/messages"
|
||||||
%h1= APP_CONFIG["site_name"]
|
%h1= APP_CONFIG["site_name"]
|
||||||
%p= t(".subtitle")
|
%p= APP_CONFIG["site_tagline"]
|
||||||
- if Retrospring::Config.registrations_enabled?
|
- if Retrospring::Config.registrations_enabled?
|
||||||
%p
|
%p
|
||||||
%a.btn.btn-outline-light.btn-lg{ href: url_for(new_user_registration_path) }
|
%a.btn.btn-outline-light.btn-lg{ href: url_for(new_user_registration_path) }
|
||||||
|
|
|
@ -1,6 +1,9 @@
|
||||||
# The site name, shown everywhere.
|
# The site name, shown everywhere.
|
||||||
site_name: "justask"
|
site_name: "justask"
|
||||||
|
|
||||||
|
# The sites tagline, shown on the start page
|
||||||
|
site_tagline: "Ask questions, give answers and learn more about your friends."
|
||||||
|
|
||||||
# Use the SVG logo from `/public/logo.svg`
|
# Use the SVG logo from `/public/logo.svg`
|
||||||
use_svg_logo: false
|
use_svg_logo: false
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,6 @@ en:
|
||||||
language: "English"
|
language: "English"
|
||||||
about:
|
about:
|
||||||
index:
|
index:
|
||||||
subtitle: "Ask questions, give answers and learn more about your friends."
|
|
||||||
register: "Register now"
|
register: "Register now"
|
||||||
already_member: "Already a member?"
|
already_member: "Already a member?"
|
||||||
more_features: "But wait, there's more!"
|
more_features: "But wait, there's more!"
|
||||||
|
|
Loading…
Reference in New Issue