for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
class Page01 extends Template {
public function __construct( $_parameters ) {
parent::__construct( $_parameters );
$this->tags["title"] = "JATE - Page01";
$this->tags["content"] = $this->makePage();
}
public function makePage() {
jBlock();
?>
<div class="row" style="margin-top:70px;">
<div class="col-lg-12">
<div class="well well-sm">
Page 1!
</div>
$temp = jBlockClose();
return $temp;