| 
<?php
/*
 AMP Frame ver 1.0.0
 Default Template
 template/default/content/test.php
 Frame Test Content
 */
 if( !defined('AFALLOW') ){
 die('direct access not allowed');
 }
 ?>
 <div class="jumbotron">
 <div class="row">
 <div class="col"><h4 class="text-center">Test Page</h4></div>
 </div><!-- row -->
 <div class="row">
 <div class="col">
 <dl>
 <dt>Testing the template child page feature</dt>
 <dd>This page is the original. Naming a file as template/default/child/test.php file will display the child test page</dd>
 </dl>
 </div><!-- col -->
 </div><!-- row -->
 </div><!-- jumbotron -->
 
 |