38 lines
		
	
	
		
			696 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			696 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/php
 | 
						|
<!--
 | 
						|
	Lists of items which I'd like to share such as gear and frequently used apps.
 | 
						|
-->
 | 
						|
<?php
 | 
						|
	include "helpers/body_open.php";
 | 
						|
?>
 | 
						|
 | 
						|
		<div class="row">
 | 
						|
			<h1 class="col-12 title">Lists</h1>
 | 
						|
		</div>
 | 
						|
		<div class="row">
 | 
						|
			<h3 class="col-6 header">Gear</h3>
 | 
						|
 | 
						|
			<h3 class="col-6 header">Apps</h3>
 | 
						|
 | 
						|
			<!-- Gear -->
 | 
						|
			<div class="col-6 text">
 | 
						|
				<p>
 | 
						|
					Gear that I find critical to my life.
 | 
						|
				</p>
 | 
						|
				<ul class="indent">
 | 
						|
					<li><a href="TBD">Sleeping Bag</a></li>
 | 
						|
				</ul>
 | 
						|
			</div>
 | 
						|
 | 
						|
			<!-- Apps -->
 | 
						|
			<div class="col-6 text">
 | 
						|
				<p>
 | 
						|
					Apps that I use frequently on a degoogled Android phone.
 | 
						|
				</p>
 | 
						|
			</div>
 | 
						|
		</div>
 | 
						|
 | 
						|
<?php
 | 
						|
	include "helpers/body_close.php";
 | 
						|
?>
 |