diff --git a/apps/theming/lib/template.php b/apps/theming/lib/template.php
index 01e3ca8b7c0eed605dbcf1e312e7f1609fbe77c4..a09a854ca69fc44e416a9260ddbef0c18a67931e 100644
--- a/apps/theming/lib/template.php
+++ b/apps/theming/lib/template.php
@@ -77,6 +77,10 @@ class Template extends \OC_Defaults {
 		return $this->config->getAppValue('theming', 'name', $this->name);
 	}
 
+	public function getTitle() {
+		return $this->config->getAppValue('theming', 'name', $this->name);
+	}
+
 	public function getEntity() {
 		return $this->config->getAppValue('theming', 'name', $this->name);
 	}
diff --git a/apps/theming/tests/lib/TemplateTest.php b/apps/theming/tests/lib/TemplateTest.php
index b9623e437b7125488ceaee6df64ba7f793f3691c..1ee860f93c464d6b81d0dcda6905148b116b2de9 100644
--- a/apps/theming/tests/lib/TemplateTest.php
+++ b/apps/theming/tests/lib/TemplateTest.php
@@ -91,6 +91,27 @@ class TemplateTest extends TestCase {
 		$this->assertEquals('MyCustomCloud', $this->template->getName());
 	}
 
+	public function testGetTitleWithDefault() {
+		$this->config
+			->expects($this->once())
+			->method('getAppValue')
+			->with('theming', 'name', 'Nextcloud')
+			->willReturn('Nextcloud');
+
+		$this->assertEquals('Nextcloud', $this->template->getTitle());
+	}
+
+	public function testGetTitleWithCustom() {
+		$this->config
+			->expects($this->once())
+			->method('getAppValue')
+			->with('theming', 'name', 'Nextcloud')
+			->willReturn('MyCustomCloud');
+
+		$this->assertEquals('MyCustomCloud', $this->template->getTitle());
+	}
+
+
 	public function testGetEntityWithDefault() {
 		$this->config
 			->expects($this->once())