32 lines
774 B
PHP
Executable File
32 lines
774 B
PHP
Executable File
#!/usr/bin/php
|
|
<?php
|
|
/* Page for my resume and work skill links. */
|
|
if (!isset($GLOBALS["HEADER_TITLE"])) {
|
|
$GLOBALS["HEADER_TITLE"] = "Resume";
|
|
}
|
|
include "helpers/body_open.php";
|
|
?>
|
|
<div class="row">
|
|
<h1 class="col-12 title">Resume</h1>
|
|
</div>
|
|
<div class="row">
|
|
<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>-->
|
|
</div>
|
|
</div>
|
|
<?php
|
|
include "helpers/body_close.php";
|
|
?>
|