Skip to content

Latest commit

 

History

History
64 lines (57 loc) · 2.12 KB

File metadata and controls

64 lines (57 loc) · 2.12 KB
layout default
title Opportunities
permalink /opportunities/

{% assign data = site.data.opportunities %}

Updated {{ data.updated_at | default: "not yet" }}

{{ data.title | default: "Merlion Radar" }}

{{ data.search_focus }}

{% if data.stats %}

{{ data.stats.published_count }}published
{{ data.stats.candidates_scored }}scored
{{ data.stats.alert_count }}alerts
{% endif %}
{% for job in data.jobs %}
{{ job.status_badge }} {{ job.score }}/100

{{ job.company }} · {{ job.location }} · {{ job.source }}

{{ job.summary }}

<div class="chips">
  {% for tag in job.tags %}<span>{{ tag }}</span>{% endfor %}
</div>

<section class="action-plan">
  <h3>Action plan</h3>
  <p><strong>Why match:</strong> {{ job.why_match }}</p>
  <p><strong>Next action:</strong> {{ job.next_action }}</p>
</section>

<section class="relevance-plan">
  <h3>Relevance plan</h3>
  <div>
    <h4>Skillsets to build</h4>
    <ul>{% for item in job.skillsets_to_build %}<li>{{ item }}</li>{% endfor %}</ul>
  </div>
  <div>
    <h4>Certs / courses to consider</h4>
    <ul>{% for item in job.certifications_to_consider %}<li>{{ item }}</li>{% endfor %}</ul>
  </div>
  <div>
    <h4>Learning gaps to close</h4>
    <ul>{% for item in job.learning_gaps %}<li>{{ item }}</li>{% endfor %}</ul>
  </div>
</section>
{% endfor %}

{% if data.jobs == empty %}

No opportunities generated yet. Run python3 scripts/update_opportunities.py.

{% endif %}