30 lines
		
	
	
		
			650 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			650 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/php
 | 
						|
<!--
 | 
						|
	Landing page, keeping it apps and development projects like old WordPress site.
 | 
						|
-->
 | 
						|
<?php
 | 
						|
	include "helpers/body_open.php";
 | 
						|
?>
 | 
						|
 | 
						|
		<div class="row">
 | 
						|
			<h1 class="col-12 title">Welcome!</h1>
 | 
						|
			<div class="col-12 header center" >
 | 
						|
				<img src="/files/media/icons/home.jpg">
 | 
						|
			</div>
 | 
						|
		</div>
 | 
						|
		<div class="row">
 | 
						|
			<div class="col-12 text center">
 | 
						|
				<p>
 | 
						|
					Thank you for visiting my site! My goal is to make the world a
 | 
						|
					better place. Hopefully you find content here which helps empower
 | 
						|
					you to do the same!
 | 
						|
				</p>
 | 
						|
			</div>
 | 
						|
		</div>
 | 
						|
 | 
						|
<?php
 | 
						|
	include "subpages/home/apps.php";
 | 
						|
 | 
						|
	include "helpers/body_close.php";
 | 
						|
?>
 |