diff options
| author | Syndamia <kamen@syndamia.com> | 2025-01-19 15:55:08 +0200 |
|---|---|---|
| committer | Syndamia <kamen@syndamia.com> | 2025-01-19 15:55:08 +0200 |
| commit | 7eddac321fba771bd3e5c7ef957d0c7f30117d18 (patch) | |
| tree | 35e1c38504df54c038d8a7fe88f3eb46bc0f7126 /views | |
| parent | c4da5629654f7cde95a91c51fc69c9fcbea9613d (diff) | |
| download | nowayforward_human-7eddac321fba771bd3e5c7ef957d0c7f30117d18.tar nowayforward_human-7eddac321fba771bd3e5c7ef957d0c7f30117d18.tar.gz nowayforward_human-7eddac321fba771bd3e5c7ef957d0c7f30117d18.zip | |
feat(views): Add titles
Diffstat (limited to 'views')
| -rw-r--r-- | views/sample_archive/index.php | 1 | ||||
| -rw-r--r-- | views/test/index.php | 1 | ||||
| -rw-r--r-- | views/test1/index.php | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/views/sample_archive/index.php b/views/sample_archive/index.php index 9d7addd..1f1ed17 100644 --- a/views/sample_archive/index.php +++ b/views/sample_archive/index.php @@ -1,4 +1,5 @@ <?php + $title = 'Archive a page'; include '../meta.php'; runController('archive_page'); ?> diff --git a/views/test/index.php b/views/test/index.php index df83e60..e5656e1 100644 --- a/views/test/index.php +++ b/views/test/index.php @@ -1,4 +1,5 @@ <?php + $title = 'Test page'; include '../meta.php'; ?> diff --git a/views/test1/index.php b/views/test1/index.php index fdd19f2..6fb737c 100644 --- a/views/test1/index.php +++ b/views/test1/index.php @@ -1,4 +1,5 @@ <?php + $title = 'Added user'; include '../meta.php'; runController('test'); ?> |
