concrete5のページ属性に入力した情報は、
[code]
$c->getAttribute(‘ハンドル’)
[/code]
で取得できます。
単純にテキストを出すだけなら下記のように取り出せば良いだけなんだけど、
<h1><?php echo $c->getAttribute('ハンドル');?></h1>
画像の場合はわかりにくかった。下記の様に書けばokです。
<img src="<?php echo ($c->getAttribute('ハンドル')->getVersion()->getRelativePath());?>" alt="" />