My main page (page.tpl.php) has several reusable components (header, footer, sidebar) and I want to place them in separately PHP files.

And I include them using

    <?php include "header.tpl.php"; ?>

What the standard file name I should create?

E.g. header.tpl.php is okay to use?