// $page — current page key (matches NAV_PAGES keys in config.php)
// $title — optional custom
suffix
// $desc — optional custom meta description
require_once __DIR__ . '/config.php';
$page_title = isset($title) ? htmlspecialchars($title) . ' — ' . SITE_NAME : SITE_NAME . ' — ' . SITE_TAGLINE;
$page_desc = isset($desc) ? htmlspecialchars($desc) : SITE_DESC;
$current = isset($page) ? $page : 'index';
?>