diff --git a/framework/core/ember/app/views/index.js b/framework/core/ember/app/views/index.js
index 12ff7d158..39adc7841 100644
--- a/framework/core/ember/app/views/index.js
+++ b/framework/core/ember/app/views/index.js
@@ -5,6 +5,7 @@ import ActionButton from 'flarum/components/ui/action-button';
import NavItem from 'flarum/components/ui/nav-item';
import WelcomeHero from 'flarum/components/index/welcome-hero';
import HasItemLists from 'flarum/mixins/has-item-lists';
+import config from 'flarum/config/environment';
var precompileTemplate = Ember.Handlebars.compile;
var $ = Ember.$;
@@ -15,7 +16,7 @@ export default Ember.View.extend(HasItemLists, {
didInsertElement: function() {
this.set('hero', WelcomeHero.extend({
title: this.get('controller.controllers.application.forumTitle'),
- description: 'Thanks for stopping by!'
+ description: config.welcomeDescription
}));
// Affix the sidebar so that when the user scrolls down it will stick
diff --git a/framework/core/src/Web/Actions/IndexAction.php b/framework/core/src/Web/Actions/IndexAction.php
index ab0e0b0d6..483390a8d 100644
--- a/framework/core/src/Web/Actions/IndexAction.php
+++ b/framework/core/src/Web/Actions/IndexAction.php
@@ -18,7 +18,9 @@ class IndexAction extends Action
'apiURL' => '/api',
'locationType' => 'hash',
'EmberENV' => [],
- 'APP' => []
+ 'APP' => [],
+ 'forumTitle' => Config::get('flarum::forum_title', 'Flarum Demo Forum'),
+ 'welcomeDescription' => 'Flarum is now at a point where you can have basic conversations, so here is a little demo for you to break. Learn more »'
];
$data = [];
$session = [];