Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ relativeURLs = false
name = "News"
url = "/about/news"
weight = 4
[[menu.main]]
parent = "about"
name = "Careers"
url = "/about/careers"
weight = 5
[[menu.main]]
identifier = "covidcast"
name = "COVIDcast"
Expand Down
5 changes: 5 additions & 0 deletions content/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ description: Developing the Theory and Practice of Epidemiological Forecasting
layout: landing

carousel:
- pre: Delphi Careers
title: We're Hiring!
ref: careers
alt: View Open Positions
image: landing-pg_hero-img-3.jpg
- pre: Our Tools
title: Real-time Indicators of COVID-19 Activity
ref: covidcast
Expand Down
7 changes: 7 additions & 0 deletions content/about/careers/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: Delphi Careers
linkTitle: Careers
layout: single
---

{{<careers>}}
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
date: 2021-06-22
title: Research Programmer/Analyst
---

We are looking for a talented engineer to prevent, identify, diagnose, and
rectify problems or outages that occur in the data processing pipelines for our
indicators. This person will ideally have competency in linux systems
administration, basic database & script programming, data analysis, and software
engineering in a team setting.

[Apply to the Research Programmer/Analyst position at CMU Careers](https://cmu.wd5.myworkdayjobs.com/en-US/CMU/job/Pittsburgh-PA/Research-Programmer-Analyst---Machine-Learning-Department_2016450-1).
11 changes: 11 additions & 0 deletions content/about/careers/headless/2021_06_senior_data_engieer.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
date: 2021-06-22
title: Senior Database Engineer
---

We are looking for a talented Senior Database Engineer to act as the technical
lead for all of our data storage and retrieval systems. This person will ideally
have significant experience in large-scale database work, and also experience in
managing/leading engineers.

[Apply to the Senior Database Engineer position at CMU Careers](https://cmu.wd5.myworkdayjobs.com/en-US/CMU/job/Pittsburgh-PA/Senior-Database-Engineer---Machine-Learning-Department_2016449).
4 changes: 4 additions & 0 deletions content/about/careers/headless/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
# flag to disable rendering individual pages
headless: true
---
4 changes: 4 additions & 0 deletions themes/delphi/assets/css/pages/_careers.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.careers-grid {
margin-top: 64px;
margin-bottom: 64px !important;
}
1 change: 1 addition & 0 deletions themes/delphi/layouts/partials/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ <h5 class="uk-text-bold">About</h5>
<ul class="uk-list">
<li><a class="uk-link-text uk-text-small" href="https://www.cmu.edu/">CMU</a></li>
<li><a class="uk-link-text uk-text-small" href="{{ relref . "/covidcast/terms-of-use" }}">Terms</a></li>
<li><a class="uk-link-text uk-text-small" href="{{ relref . "/about/careers" }}">Careers</a></li>
</ul>
</div>
<div>
Expand Down
14 changes: 14 additions & 0 deletions themes/delphi/layouts/shortcodes/careers.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{{ $careers := .Site.GetPage "/about/careers/headless" }}
<div class="card-grid careers-grid">
{{ range (sort ($careers.Resources.ByType "page") ".PublishDate" "desc") }}
<div class="card-grid-item uk-card uk-card-default uk-card-small">
<div class="card-grid-item-date">{{ .PublishDate.Format "Jan 2006" }}</div>
<div class="uk-flex uk-flex-column">
<div class="uk-card-body uk-flex-1">
<h3 class="uk-card-title">{{ .Title }}</h3>
<div>{{ .Content }}</div>
</div>
</div>
</div>
{{ end }}
</div>