From: Sam White Date: Sat, 11 Sep 2021 05:52:23 +0000 (+0000) Subject: Add page titles. X-Git-Url: https://git.dalvak.com/public/?a=commitdiff_plain;h=62e57ddc8edc268763ef27e630ac6862a9de9a14;p=ycra.git Add page titles. --- 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'); }