Skip to content

Commit daffce2

Browse files
authored
Merge pull request #389 from cmu-delphi/krivard/add-careers-section
Add a Careers section
2 parents 9d435b0 + eb73d78 commit daffce2

File tree

10 files changed

+63
-0
lines changed

10 files changed

+63
-0
lines changed
3.12 MB
Loading

config.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@ relativeURLs = false
4040
name = "News"
4141
url = "/about/news"
4242
weight = 4
43+
[[menu.main]]
44+
parent = "about"
45+
name = "Careers"
46+
url = "/about/careers"
47+
weight = 5
4348
[[menu.main]]
4449
identifier = "covidcast"
4550
name = "COVIDcast"

content/_index.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ description: Developing the Theory and Practice of Epidemiological Forecasting
44
layout: landing
55

66
carousel:
7+
- pre: Delphi Careers
8+
title: We're Hiring!
9+
ref: careers
10+
alt: View Open Positions
11+
image: landing-pg_hero-img-3.jpg
712
- pre: Our Tools
813
title: Real-time Indicators of COVID-19 Activity
914
ref: covidcast

content/about/careers/_index.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
title: Delphi Careers
3+
linkTitle: Careers
4+
layout: single
5+
---
6+
7+
{{<careers>}}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
date: 2021-06-22
3+
title: Research Programmer/Analyst
4+
---
5+
6+
We are looking for a talented engineer to prevent, identify, diagnose, and
7+
rectify problems or outages that occur in the data processing pipelines for our
8+
indicators. This person will ideally have competency in linux systems
9+
administration, basic database & script programming, data analysis, and software
10+
engineering in a team setting.
11+
12+
[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).
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
date: 2021-06-22
3+
title: Senior Database Engineer
4+
---
5+
6+
We are looking for a talented Senior Database Engineer to act as the technical
7+
lead for all of our data storage and retrieval systems. This person will ideally
8+
have significant experience in large-scale database work, and also experience in
9+
managing/leading engineers.
10+
11+
[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).
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
# flag to disable rendering individual pages
3+
headless: true
4+
---
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.careers-grid {
2+
margin-top: 64px;
3+
margin-bottom: 64px !important;
4+
}

themes/delphi/layouts/partials/footer.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ <h5 class="uk-text-bold">About</h5>
3333
<ul class="uk-list">
3434
<li><a class="uk-link-text uk-text-small" href="https://www.cmu.edu/">CMU</a></li>
3535
<li><a class="uk-link-text uk-text-small" href="{{ relref . "/covidcast/terms-of-use" }}">Terms</a></li>
36+
<li><a class="uk-link-text uk-text-small" href="{{ relref . "/about/careers" }}">Careers</a></li>
3637
</ul>
3738
</div>
3839
<div>
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{{ $careers := .Site.GetPage "/about/careers/headless" }}
2+
<div class="card-grid careers-grid">
3+
{{ range (sort ($careers.Resources.ByType "page") ".PublishDate" "desc") }}
4+
<div class="card-grid-item uk-card uk-card-default uk-card-small">
5+
<div class="card-grid-item-date">{{ .PublishDate.Format "Jan 2006" }}</div>
6+
<div class="uk-flex uk-flex-column">
7+
<div class="uk-card-body uk-flex-1">
8+
<h3 class="uk-card-title">{{ .Title }}</h3>
9+
<div>{{ .Content }}</div>
10+
</div>
11+
</div>
12+
</div>
13+
{{ end }}
14+
</div>

0 commit comments

Comments
 (0)