From 62e57ddc8edc268763ef27e630ac6862a9de9a14 Mon Sep 17 00:00:00 2001 From: Sam White Date: Sat, 11 Sep 2021 05:52:23 +0000 Subject: [PATCH] Add page titles. --- public_html/index.php | 4 ++++ public_html/join.php | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/public_html/index.php b/public_html/index.php index 45bfa78..7614936 100644 --- a/public_html/index.php +++ b/public_html/index.php @@ -22,6 +22,10 @@ function founding_member_bio($name, $why_create) { $desc); } +function page_title() { + return 'Young Change Ringers Association'; +} + function additional_stylesheets() { stylesheet('bio'); } diff --git a/public_html/join.php b/public_html/join.php index 48fbee7..fcb0ea8 100644 --- a/public_html/join.php +++ b/public_html/join.php @@ -51,6 +51,10 @@ function store_member_data($data) { insert_array('members', $fields); } +function page_title() { + return 'Join Us'; +} + function additional_stylesheets() { stylesheet('fields'); } -- 2.25.1