31 lines
588 B
PHP
Executable File
31 lines
588 B
PHP
Executable File
#!/usr/bin/php
|
|
|
|
<!--
|
|
Page for my video links.
|
|
-->
|
|
|
|
<?php
|
|
include "helpers/body_open.php";
|
|
?>
|
|
|
|
<div class="row col-12 title">
|
|
<h1>Videos</h1>
|
|
<p >
|
|
I enjoy making video content when I have free time. Other life duties take
|
|
priority so this is not always frequent of often.
|
|
</p>
|
|
</div>
|
|
|
|
<?php
|
|
include "helpers/section_open.php";
|
|
//include "subpages/support/gifts.php";
|
|
include "helpers/section_close.php";
|
|
|
|
include "helpers/section_open.php";
|
|
//include "subpages/support/donate.php";
|
|
include "helpers/section_close.php";
|
|
|
|
include "helpers/body_close.php";
|
|
?>
|
|
|