PHP Classes

File: tests/mvc/views/shared/_lite.php

Recommend this page to a friend!
  Classes of Aleksey   PHP MVC Project   tests/mvc/views/shared/_lite.php   Download  
File: tests/mvc/views/shared/_lite.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP MVC Project
Framework that implements the MVC design pattern
Author: By
Last change:
Date: 5 years ago
Size: 345 bytes
 

Contents

Class file image Download
<?php
use PhpMvc\Html;
use
PhpMvc\View;
?>
<!--View file: <?=View::getViewFile()?>-->
<html>
    <head>
        <title><?=Html::getTitle('Lite layout')?> - PHP MVC Test project</title>
    </head>
    <body>
        <h1>Lite layout</h1>

        <div class="container">
            <?php Html::renderBody(); ?>
</div>
    </body>
</html>