コンテンツナビを出力したい。

こんにちは!いつもありがとうございます。お世話になっています。ずっとテーマは Omotenashi3系を使わせてもらっていたのですが、その時はコンテンツナビがそのままであったのですが、 Omotenashi-2 (4系)にしたところコンテンツナビというんですか?なくなってしまったのです。(ページの下に前のページのタイトルやら次のページのタイトルがでる)ようにしたいのです。
http://wiki.basercms.net/関数リファレンス/BcBaser_contentsNavi

マニュアルのところをみたのだけど。
$this->BcBaser->contentsNavi($data, $options);
このコードはどこに追加したらいいのですか?

<?php $this->BcBaser->contentsNavi(); ?>

このコードも使いする場所がわかりません。

よろしくお願い致します

こんにちは

以下のレイアウトファイルに追記すると全ページに表示されました。

theme/omotenashi2/Layouts/default.php

<article class="contents">
	<?php $this->BcBaser->content() ?>
	<?php $this->BcBaser->contentsNavi() ?>
</article>

setoさんありがとうございます。 コンテンツナビはついたのですが。
全ページコピーされて縦長の2枚になってしまいました。
へっだーとかフッターはそのままなんですが。
僕が以前にdefaulte.php
をすこし触ったからですかね!?
さっきまでは普通だったのですが。

ややこしくてすみません!
よろしくおねがいします
https://kenkou123.com/toushitsu/diet

defaulte

<?php $this->BcBaser->charset() ?> <?php $this->BcBaser->title() ?> <?php $this->BcBaser->metaDescription() ?> <?php $this->BcBaser->metaKeywords() ?>
<?php
//OGP
//=====================================
$siteName = $siteConfig["name"];
$siteUrl = $siteConfig["name"];
$description = mb_substr( $siteConfig["description"] ,0, 297); //サイトの説明文297文字以内
$title = $this->BcBaser->getTitle(); //ページタイトル95文字以内
$type ="website"; //記事はarticle, それ以外(HOME、固定ページ)はwebsite
$url =$this->BcBaser->getUri($this->BcBaser->getHere());
$publisher = ""; //著者のFacebookページURLかID。FacebookページのFollowボタンを表示できるようになる。
$fb_id = "";       //FacebookのAPP ID
$author = "@mune_nori";      //Twitter Cardに表示されるアカウント名
$domain = "munerin.com";       //Twitter Cardに表示されるドメイン名
$eyeCatch = "/theme/omotenashi/img/common/ogp_img.png"; //デフォルトの画像をフルパス指定(アイキャッチが無い場合)
//ブログ記事の場合はアイキャッチ画像を出力
if (!empty($post)) {
	$type ="article";
	$num = 297; //説明文の文字数制限(本文から抜き出し)
	$str = strip_tags($post[‘BlogPost’][‘detail’]); //タグ除去
	$str = str_replace(array("\r\n","\n","\r"), ”, $str); //改行除去
	if(mb_strlen($str) >= $num) {
		$description = mb_substr($str, 0,$num-1)."…";
	} else {
		$description = $str;
	}
	//タイトルにはサイトタイトルを含めない
	$title = $this->Blog->getPostTitle($post,false)." ? ".$siteConfig["formal_name"]; //ページタイトル95文字以内
	$blogName = $post["BlogContent"]["name"];
	$baseCurrentUrl = "/".$blogName . ‘/archives/’;
	$baseCurrentImgUrl = "/files/blog/".$blogName . "/blog_posts/";
	$eyeCatch = $this->BcBaser->getUri( $baseCurrentImgUrl . $post["BlogPost"]["eye_catch"]);
}
?>
<meta property="article:publisher" content="<?php echo $publisher; ?>">
<meta property="og:type" content="<?php echo $type; ?>">
<meta property="og:locale" content="ja_JP">
<meta property="og:site_name" content="<?php echo $siteName; ?>">
<meta property="og:title" content="<?php echo $title; ?>">
<meta property="og:description" content="<?php echo $this->BcBaser->getDescription() ?>">
<meta property="og:url" content="<?php echo $url; ?>">
<meta property="og:image" content="<?php echo $eyeCatch; ?>">
<meta property="fb:app_id" content="<?php echo $fb_id; ?>">
<?php // Twitter Cardsの種類指定 ?>
<meta name="twitter:card" content="summary_large_image">
<?php // 写真左上 :「アカウント名」の表記(無くてもOK) ?>
<meta name="twitter:site" content="<?php echo $author; ?>">
<?php // by (投稿者) :写真下の 「By アカウント名 @TwitterID 」(無くてもOK)?>
<meta name="twitter:creator" content="<?php echo $author; ?>">
<meta name="twitter:domain" content="<?php echo $domain; ?>">
<meta name="twitter:url" content="<?php echo $url; ?>">
<meta name="twitter:title" content="<?php echo $title; ?>">
<meta name="twitter:description" content="<?php echo $this->BcBaser->getDescription() ?>">
<meta name="twitter:image" content="<?php echo $eyeCatch; ?>">

<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no">
<?php $this->BcBaser->icon() ?>
<?php $this->BcBaser->rss('ニュースリリース RSS 2.0', '/news/index.rss') ?>
<?php $this->BcBaser->css(array(
'style')); ?>
	<?php $this->BcBaser->js(array(
'jquery-1.11.1.min.js',
'admin/functions',
'jquery.easing',
'common')); ?>
<!--[if lt IE 9]>
	<script src="<?php $this->BcBaser->themeUrl() ?>js/html5shiv.js"></script>
	<script src="<?php $this->BcBaser->themeUrl() ?>js/selectivizr.js"></script>
<![endif]-->
<!--[if lte IE 7]>
	<script src="<?php $this->BcBaser->themeUrl() ?>js/jquery.ie6warning.js"></script>
<![endif]-->
<?php $this->BcBaser->scripts() ?> 
<?php if ($this->BcBaser->isHome()): ?>
<script src="<?php $this->BcBaser->themeUrl() ?>js/vegas.min.js"></script>
<script src="<?php $this->BcBaser->themeUrl() ?>js/index.js"></script>
<script>
	$(function() {
		var bgimages = [];
		$('.mainVisualList img').each(function(){
			//メインビジュアルのsrcを取得
			var mainSrc = $(this).attr('src');
			//取得したsrcを配列に追加
			bgimages.push({
				src: mainSrc
			});
		});

		//vegas setting
		$('.mainVisual').vegas({
			overlay: false,
			timer: true,
			transition: 'fade',
			transitionDuration: 1500,
			delay: 6000,
			animation: 'fade',
			slides: bgimages
		});
	});
</script>
<?php endif ?>
<?php if (!$this->BcBaser->isHome()): ?>
<script src="<?php $this->BcBaser->themeUrl() ?>js/jquery.magnific-popup.min.js"></script>
<script>
	$(function() {
		//magnific-popup
		$(".popup, .eyeCatch a, .post-body a, #post-detail a").magnificPopup({
			type: 'image',
			mainClass: 'mfp-with-zoom',
			removalDelay: 160,
			preloader: false,
			fixedContentPos: false,
			gallery:{enabled:true}
		});
	});
</script>
<?php endif ?>
<?php $this->BcBaser->googleAnalytics() ?>

<body<?php if ($this->BcBaser->isHome()): ?> class=“index”<?php endif ?>>
<?php $this->BcBaser->header() ?>

<?php if (!$this->BcBaser->isHome()): ?>
	<aside class="breadcrumb">
		<nav class="container">
			<?php $this->BcBaser->crumbsList(); ?>
		</nav>
	</aside>
<?php endif ?>

<?php if ($this->BcBaser->isHome()): ?>
	<?php $this->BcBaser->flash() ?>
	<div class="indexContents">
		<div class="container">
		
			<?php $this->BcBaser->content() ?>
		</div>
	</div><!-- /indexContents -->
<?php else: ?>
	<article class="contents">
	<?php $this->BcBaser->content() ?>
	</article>
<?php endif ?>
<?php $this->BcBaser->content() ?>

<?php $this->BcBaser->contentsNavi() ?>
<?php $this->BcBaser->footer() ?> <?php $this->BcBaser->func() ?>

すみません。書き方が悪かったですね。

<?php $this->BcBaser->contentsNavi() ?>のみを追加してください。

私が試した際は、

<article class="contents">
	<?php $this->BcBaser->content() ?>
</article>

の中に追加し、結果として以下の形式になりました。

<article class="contents">
	<?php $this->BcBaser->content() ?>
	<?php $this->BcBaser->contentsNavi() ?>
</article>

setoさん!ありがとうございます。
思ったようになりました。今まで進むボタンとか作っていたのを消して、コンテンツナビでいい感じになりました。
いつもありがとうございます

「いいね!」 1