In Drupal 6, it was easy to insert a block into a template with the following code:
$block = module_invoke(\'views\', \'block\', \'view\', \'block_name\'); print
This work for me:
98 is the id of the block
$block =block_load('block',98); $output = drupal_render(_block_get_renderable_array(_block_render_blocks(array($block)))); print $output;