4 * Copyright (c) 2003-2008 John Willinsky
5 * Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
7 * Display a help topic.
9 * $Id: view.tpl,v 1.1.1.1 2008/10/20 21:27:09 tylerl Exp $
12 {include file="help/header.tpl"}
16 {include file="help/toc.tpl"}
21 <h4>{translate key="help.ompHelp"}</h4>
23 <div class="thickSeparator"></div>
26 {if $topic->getId() == "index/topic/000000"}
27 <a href="{get_help_id key="index.index" url="true"}" class="current">{translate key="navigation.home"}</a>
29 <a href="{get_help_id key="index.index" url="true"}">{translate key="navigation.home"}</a>
30 {foreach name=breadcrumbs from=$breadcrumbs item=breadcrumb key=key}
31 {if $breadcrumb != $topic->getId()}
32 > <a href="{url op="view" path=$breadcrumb|explode:"/"}">{$key|escape}</a>
35 > <a href="{url op="view" path=$topic->getId()|explode:"/"}" class="current">{$topic->getTitle()}</a>
39 <h2>{$topic->getTitle()}</h2>
42 <div>{include file="help/topic.tpl"}</div>
47 {include file="help/footer.tpl"}