21 lines
362 B
PHP
Executable File
21 lines
362 B
PHP
Executable File
#!/usr/bin/php
|
|
|
|
<?php
|
|
include "helpers/body_open.php";
|
|
?>
|
|
|
|
<div class="row col-12 title">
|
|
<h1>Welcome!</h1>
|
|
<p>
|
|
Website is still in testing. Don't judge too harshly. :)
|
|
</p>
|
|
</div>
|
|
|
|
<?php
|
|
include "helpers/section_open.php";
|
|
include "subpages/home/apps.php";
|
|
include "helpers/section_close.php";
|
|
|
|
include "helpers/body_close.php";
|
|
?>
|