9 lines
190 B
PHP
9 lines
190 B
PHP
|
@extends(templates/layout_normal)
|
||
|
|
||
|
@section(main)
|
||
|
<h2><?= $_ENV['APP_NAME'] ?></h2>
|
||
|
<div class="box">
|
||
|
<p>This is the new <?= $_ENV['APP_NAME'] ?>.</p>
|
||
|
</div>
|
||
|
@endsection
|