From b6933175231fa279463ccbc4b7d2cc30bb19a2c5 Mon Sep 17 00:00:00 2001
From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com>
Date: Tue, 14 Oct 2025 11:23:48 -0400
Subject: [PATCH 1/2] Fix typos
---
files/index.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/files/index.html b/files/index.html
index 8e0e8b4..622a2f9 100644
--- a/files/index.html
+++ b/files/index.html
@@ -4,11 +4,11 @@
- Docs App
+ Demo App
-
+
From 1c98daefca1dffc7efb2965c334f2c983928de06 Mon Sep 17 00:00:00 2001
From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com>
Date: Tue, 14 Oct 2025 11:24:56 -0400
Subject: [PATCH 2/2] Add page-title usage
---
files/demo-app/templates/application.gts | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/files/demo-app/templates/application.gts b/files/demo-app/templates/application.gts
index 7677302..3e5c50b 100644
--- a/files/demo-app/templates/application.gts
+++ b/files/demo-app/templates/application.gts
@@ -1,6 +1,10 @@
+import { pageTitle } from 'ember-page-title';
+
const greeting = 'hello';
+ {{pageTitle "Demo App"}}
+
Welcome to ember!
{{greeting}}, world!