You should not have to create/render any of those you posted there. When you go to render your own template, you would have this second line here to render those templates automatically for your page:
PHP Code:
$templater = vB_Template::create('your_template');
$templater->register_page_templates();
$templater->register('your_variable', $your_variable);
print_output($templater->render());