Add something like this to tpl_index_default.php:
Code:
<?php $my_content = $db->Execute("select * from " . TABLE_EZPAGES . " where pages_id=3"); ?>
<h2><?php echo $my_content->fields['pages_title']; ?></h2>
<?php echo $my_content->fields['pages_html_text']; ?>
You'll need to change 'pages_id=3' to match whatever ezpage ID you want to pull the content from.
If you wanted to have a summary of the content from this page and a link to 'Read More' you'd do something like:
Code:
<?php
$my_content_id = 3;
$my_content = $db->Execute("select * from " . TABLE_EZPAGES . " where pages_id=$my_content"); ?>
<h2><?php echo $my_content->fields['pages_title']; ?></h2>
<?php echo zen_trunc_string(zen_clean_html(stripslashes($my_content->fields['pages_html_text'])), 200); ?>
<div><a href="<?php echo zen_ez_pages_link($my_content_id); ?>">Read more > ></a></div>
Here I'm setting a var to store the ezpage ID ($my_content_id). You can change the length of the truncated text by setting a different value where it says '200'.