main.php 397 Bytes
Newer Older
1
<?php use yii\helpers\Html as Html; ?>
2
<!doctype html>
3
<html lang="<?php \Yii::$app->language?>">
4 5
	<head>
		<meta charset="utf-8" />
6
		<title><?php echo Html::encode($this->title)?></title>
7 8
	</head>
	<body>
9
		<h1><?php echo Html::encode($this->title)?></h1>
10 11 12 13 14 15 16
		<div class="content">
			<?php echo $content?>
		</div>
		<div class="footer">
			<?php echo \Yii::powered()?>
		</div>
	</body>
Zander Baldwin committed
17
</html>