Files
yii2/tests/unit/extensions/twig/views/layout.twig
Carsten Brandt 951791f245 added unit test for twig renderer
verify #1755 works
2014-01-07 17:06:25 +01:00

15 lines
287 B
Twig

{{ this.beginPage() }}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="<?php echo Yii::$app->charset; ?>"/>
<title>{{ html.encode(this.title) }}</title>
{{ this.head() }}
</head>
<body>
{{ this.beginBody() }}
body
{{ this.endBody() }}
</body>
{{ this.endPage() }}