get_page_templates only return templates with “home” in the filename

Figured it out after thinking it through..

if (stripos(strtolower($template_filename), 'home') !== false) {
    $results[] = $template_name;
}