< 戻る

レイアウトテンプレート

2026-02-24 13:31:51

サイトをデザインする上で、ページにより外枠を共用したいケースがあります。
たとえばトップページと固定ページは同一のデザインにしたいような場合です。
このような場合、「レイアウトテンプレート」を使用することで共用ができます。

例)
template2_layout.php ( 名前は~.phpであればなんでも構いません )
<!DOCTYPE html>
<html lang="ja">
<head>
(省略)
</head>
<body>
{PPP:admin_header}
<div class="wrapper">
{PPP LAYOUT_CONTENTS}
</div>
</body>
</html>

template2_index.php
{PPP LAYOUT:template2_layout.php}
トップページコンテンツ
{PPP:conents}

上記のようにtemplate2_layout.phpを用意し、template2_index.phpで{PPP LAYOUT}指定を行うと、次のように扱われます。

<!DOCTYPE html>
<html lang="ja">
<head>
(省略)
</head>
<body>
{PPP:admin_header}
<div class="wrapper">
{PPP LAYOUT:template2_layout.php}
トップページコンテンツ
{PPP:conents}
</div>
</body>
</html>

template2_layout.php内の{PPP LAYOUT_CONTENT}部分が呼び出しもとテンプレートの内容に置き換わる形です。


いいね!
|