Skip to content

Instantly share code, notes, and snippets.

@fredzannarbor
Last active September 13, 2020 00:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fredzannarbor/53e765296504ffaf8c7ca7a32ffd8467 to your computer and use it in GitHub Desktop.
Save fredzannarbor/53e765296504ffaf8c7ca7a32ffd8467 to your computer and use it in GitHub Desktop.
smart resume code for jekyll
---
layout: default
title: Developer Relations
---
{% include coordinates.html %}<p></p>
<strong>Developer Relations -- Related Employment</strong>
{% assign targetjob = "developer_rx" %}
(<a href="cv-full.html">full CV</a>)
<p></p>
{% assign first_accomplishment = true %}
{% assign employersbydate = site.employers | sort: "to_date" | reverse %}
{% for employer in employersbydate %}
{% for accomplishment in site.accomplishments %}
{% for goal in accomplishment.resume_goal %}
{% if goal == targetjob and employer.title == accomplishment.employer and first_accomplishment == true %}
{{ employer.content }}
<ul>
<li>{{ accomplishment.content }}</li>
{% assign first_accomplishment = false %}
{% elsif goal == targetjob and employer.title == accomplishment.employer and first_accomplishment == false %}
<li>{{ accomplishment.content }}</li>
{% assign first_accomplishment = false %}
{% else %}
{% endif %}
{% endfor %}
{% endfor %}
</ul>
{% assign first_accomplishment = true %}
{% endfor %}
{% include education.html %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment