You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					24 lines
				
				390 B
			
		
		
			
		
	
	
					24 lines
				
				390 B
			| 
											13 years ago
										 | <?php
 | ||
|  | /**
 | ||
| 
											12 years ago
										 |  * @var \yii\web\View $this
 | ||
| 
											13 years ago
										 |  * @var string $content
 | ||
|  |  */
 | ||
|  | use yii\helpers\Html;
 | ||
| 
											12 years ago
										 | 
 | ||
| 
											12 years ago
										 | yii\debug\DebugAsset::register($this);
 | ||
| 
											13 years ago
										 | ?>
 | ||
|  | <!DOCTYPE html>
 | ||
|  | <html>
 | ||
| 
											12 years ago
										 | <?php $this->beginPage() ?>
 | ||
| 
											13 years ago
										 | <head>
 | ||
| 
											12 years ago
										 | 	<title><?= Html::encode($this->title) ?></title>
 | ||
| 
											12 years ago
										 | 	<?php $this->head() ?>
 | ||
| 
											13 years ago
										 | </head>
 | ||
|  | <body>
 | ||
| 
											12 years ago
										 | <?php $this->beginBody() ?>
 | ||
| 
											12 years ago
										 | <?= $content ?>
 | ||
| 
											12 years ago
										 | <?php $this->endBody() ?>
 | ||
| 
											13 years ago
										 | </body>
 | ||
| 
											12 years ago
										 | <?php $this->endPage() ?>
 | ||
| 
											13 years ago
										 | </html>
 |