heres the code from the index page – no the_excerpt();
Can I add it in somewhere?
<?php
get_header();
if (have_posts())
{
while (have_posts())
{
art_post();
}
art_page_navi();
} else {
art_post_box(
__(‘Not Found’, ‘kubrick’),
‘<p class=”center”>’ . __(‘Sorry, but you are looking for something that isn’t here.’, ‘kubrick’) . ‘</p>’
. “\r\n” . art_get_search());
}
get_footer();