How would I do that? Right now, text-only category names just appear at the top of the first column of the standard template.


{include file="$blogtemplatepath/category.template")}
{if $category}
currently browing category: {$category->getName()}
{/if}
{if $category->getName()=="Podcast"}
{include file="$blogtemplate/category.template"}
{/if}{if $category}
{if $category->getName() == "..."}
...
{/if}
{/if}
{if $OnMainPage}
{include file="$blogtemplate/front.template"}
{/if}
{if $category}
{if $category->getName()=="Podcast"}
{include file="$blogtemplate/podcast.template"}
{/if}
{if $category->getName()=="News"}
{include file="$blogtemplate/news.template"}
{/if}
{/if}{if $category}
{if $category->getName()=="Podcast"}
{include file="$blogtemplate/podcast.template"}
{/if}
{if $category->getName()=="News"}
{include file="$blogtemplate/news.template"}
{/if}
{else}
{include file="$blogtemplate/front.template"}
{/if}G. Noel Gross wrote:Now on to how to make "front.template" appear only on page "1" of my blog. ???
