Skip to content

Commit

Permalink
Merge pull request #326 from gonuke/archive_opps
Browse files Browse the repository at this point in the history
cleanup opportunities
  • Loading branch information
magnoxemo authored Jan 15, 2025
2 parents 56faac4 + 0fe5b32 commit 710ff0b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 16 deletions.
15 changes: 10 additions & 5 deletions _layouts/opportunities.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,18 @@ <h1>{{ page.title | escape }}</h1>
<section>
<h2>Current Openings</h2>
<dl>
{% assign current_opps = 0 %}
{% for opportunity in site.opportunities %}
{% if opportunity.active == true %}
<dt><a href="{{ opportunity.url }}">{{ opportunity.title }}</a></dt>
<dd>{{ opportunity.desc }}<br/>
Posted: {{ opportunity.posted | date: date_format }}, Closes: {{ opportunity.closes | date: date_format }}</dd>
{% endif %}
{% if opportunity.active == true %}
{% assign current_opps = current_opps | plus: 1 %}
<dt><a href="{{ opportunity.url }}">{{ opportunity.title }}</a></dt>
<dd>{{ opportunity.desc }}<br/>
Posted: {{ opportunity.posted | date: date_format }}, Closes: {{ opportunity.closes | date: date_format }}</dd>
{% endif %}
{% endfor %}
{% if current_opps == 0 %}
<dt>None</dt>
{% endif %}
</dl>
</section>

Expand Down
10 changes: 0 additions & 10 deletions _opportunities/2019-nnsa-post-doc.md

This file was deleted.

2 changes: 1 addition & 1 deletion _opportunities/2021-nnsa-post-doc.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: "Nuclear Security Post-Doc"
desc: "Post-doctoral associate engaged in data science and fuel cycle simulation in support of NNSA Consortia."
posted: 2020-01-25
closes: 2021-02-28
active: true
active: false
---

The Computational Nuclear Engineering Research Group (CNERG) is participating in
Expand Down

0 comments on commit 710ff0b

Please sign in to comment.