Skip to content

Commit

Permalink
Update resume.html
Browse files Browse the repository at this point in the history
  • Loading branch information
gaterunner341 committed Apr 20, 2024
1 parent 33ef9d2 commit 5201d5e
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion _layouts/resume.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,32 @@
<h2>Summary</h2>
Phillip is a security professional with 20 years of experience in physical, industrial, personnel, and cybersecurity. Skilled with securing, defending, and countering threats to government and military networks. CISSP certification holder, ISC Exam Developer, and Adjunct Instructor.

<section>
<h2>Experience</h2>
{% for company in site.data.experience %}
<div class="company">
<b>{{ company.company }}</b>
<img src="{{ company.logo }}" alt="{{ company.alt }}">
{% for position in company.positions %}
<div class="position">
<h3>{{ position.position }}</h3>
<p><strong>Duration:</strong> {{ position.duration }}</p>
<p>{{ position.summary | markdownify }}</p>
</div>
{% endfor %}
</div>
{% endfor %}
</section>


<section>
<h2>Experience</h2>
{% for company in site.data.experience %}
<div style="width:100%">
<img src="./assets/images/resume/{{ company.logo }}" alt="{{ company.alt }}" style="padding-right:8px;float:left;width:40px;height:auto;">
<div style="width:115%;">
<b>{{ company.company }}</b><br>
{% for position company.positions %}
{% for position in company.positions %}
<!--{{ job.position }} &bull; {{ job.duration }}<br><br>-->
{{ position.position }} &bull; {{ position.duration }}<br><br>
{% endfor %}
Expand Down

0 comments on commit 5201d5e

Please sign in to comment.