mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-22 13:10:55 -04:00
15 lines
284 B
PHP
Executable File
15 lines
284 B
PHP
Executable File
<?php
|
|
$page = $argv[1];
|
|
include('template/head.php');
|
|
include('template/header.php');
|
|
?>
|
|
<div class="container-fluid">
|
|
<?php
|
|
$page_include = (__DIR__).'/content/'.$page;
|
|
include($page_include);
|
|
include('template/sidebar.php');
|
|
?>
|
|
</div>
|
|
<?php
|
|
include('template/footer.php');
|