* Change Videos page to Media. * Add page for My Health Ptorocol. * Add placeholder with basic layout for future lists page. * Little more work on the book links. * Be consistent with sentences. * Add a link to the GitHub project. * Change filename, add TBD's. * Add a note about the new eBook.
		
			
				
	
	
		
			38 lines
		
	
	
		
			662 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			662 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/php
 | |
| <!--
 | |
| 	Page to provide ways people can support me.
 | |
| -->
 | |
| <?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";
 | |
| ?>
 |