43 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/php
 | 
						|
<!--
 | 
						|
	Page for my resume and work skill links.
 | 
						|
-->
 | 
						|
<?php
 | 
						|
	include "helpers/body_open.php";
 | 
						|
?>
 | 
						|
 | 
						|
		<div class="row">
 | 
						|
			<h1 class="col-12 title">Resume</h1>
 | 
						|
			<div class="col-12 header center" >
 | 
						|
				<img src="/files/media/icons/home.jpg"> <!-- TBD use a new photo -->
 | 
						|
			</div>
 | 
						|
			<h2 class="col-12 title center">Current Status : Traveling Full Time</h2>
 | 
						|
		</div>
 | 
						|
		<div class="row">
 | 
						|
			<div class="col-12 text center">
 | 
						|
				<p>
 | 
						|
					Interested in hiring me? View my resume below!
 | 
						|
				</p>
 | 
						|
				<ul class="indent"><li>
 | 
						|
					<a href="https://hyperling.com/files/media/documents/Resume.pdf"
 | 
						|
						target="_blank" rel="noopener noreferrer"
 | 
						|
					>
 | 
						|
						[PDF] | Direct Download
 | 
						|
					</a>
 | 
						|
				</li></ul>
 | 
						|
				<!-- For those sneaky folks who look at source code. ;)
 | 
						|
				<ul class="indent"><li>
 | 
						|
					<a href="https://hyperling.com/files/media/documents/resume.md"
 | 
						|
						target="_blank" rel="noopener noreferrer"
 | 
						|
					>
 | 
						|
						[Markdown] | Direct Download
 | 
						|
					</a>
 | 
						|
				</li></ul>
 | 
						|
				-->
 | 
						|
			</div>
 | 
						|
		</div>
 | 
						|
 | 
						|
<?php
 | 
						|
	include "helpers/body_close.php";
 | 
						|
?>
 |