-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjobs.html
34 lines (33 loc) · 1.47 KB
/
jobs.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
---
layout: page
title: CI CoE Pilot - Job Listings
permalink: /jobs
---
<section id="intro">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 space">
<div class="section-title">
<h2>Job Listings</h2>
</div>
<p> If you have a job opportunity that you’d like to share with the CI community, we can help! Please send a link to the post to [email protected] with the subject line “Job posting for CI CoE website.”</p>
<p></p>
<p> Our friends at SGCI have also promoted some great opportunities. <a href = "https://sciencegateways.org/community/jobs">Visit them here</a></p>
<div class="col-md-12 col-sm-12 space" style="padding-top: 5em">
{% if site.data.job_listings.size > 0 %}
{% assign jobs = site.data.job_listings | sort: 'date' | reverse %}
{% for j in jobs %}
<div class="col-md-12 col-sm-12" style="margin-bottom: 2em">
<div class="job">
<h1>{{ j.title }}</h1>
{{ j.desc }}
</div>
<div class="event-category">{{ j.date | date: "%B %d, %Y" }}</div>
</div>
{% endfor %}
{% endif %}
</div>
</div>
</div>
</div>
</section>