パンくずリスト表示プラグイン
このプラグインについて
ページとして登録した記事に、パンくずリストを表示します。

導入方法
ファイルのアップロード
config.page_topicpath.php と display.page_topicpath.php を libs/freo/plugins/ ディレクトリ内にアスキーモードでアップロードします。
テンプレートの編集
一例ですが、templates/internals/page/default.html のはじめにある
{include file='header.html'}
<!--{if $smarty.get.id}-->
<h2>{$page.title}</h2>
の直後に、以下の記述を追加します。表示項目やHTMLは、必要に応じて適当に変更してください。
<p>
<a href="{$freo.core.http_file}">トップページ</a>
<!--{foreach from=$plugin_page_topicpaths|smarty:nodefaults item='plugin_page_topicpath'}-->
> <a href="{$freo.core.http_file}/page/{$plugin_page_topicpath.id}">{$plugin_page_topicpath.title}</a>
<!--{/foreach}-->
> {$page.title}
</p>