* Add a resume page. * Add resume link to home page. * Hide markdown version for now. Leave it for the secret spies to find. * Add that I am a contractor, not actually full time salary.
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.1 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>
 | 
						|
		<div class="row">
 | 
						|
			<div class="col-12 header center" >
 | 
						|
				<img src="/files/media/icons/home.jpg"> <!-- TBD use a new photo -->
 | 
						|
			</div>
 | 
						|
		</div>
 | 
						|
		<div class="row">
 | 
						|
			<h2 class="col-12 header">Current Status : Full Time Contractor</h2>
 | 
						|
			<div class="col-12 text">
 | 
						|
				<p>
 | 
						|
					Interested in hiring me? Please find 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";
 | 
						|
?>
 |