diff --git a/assets/images/landing-page/hero-images/landing-pg_hero-img-3.jpg b/assets/images/landing-page/hero-images/landing-pg_hero-img-3.jpg new file mode 100644 index 000000000..098768a3f Binary files /dev/null and b/assets/images/landing-page/hero-images/landing-pg_hero-img-3.jpg differ diff --git a/config.toml b/config.toml index d739feb1c..9c69f44ea 100644 --- a/config.toml +++ b/config.toml @@ -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" diff --git a/content/_index.md b/content/_index.md index 629259762..343fe4408 100644 --- a/content/_index.md +++ b/content/_index.md @@ -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 diff --git a/content/about/careers/_index.md b/content/about/careers/_index.md new file mode 100644 index 000000000..dca6db30c --- /dev/null +++ b/content/about/careers/_index.md @@ -0,0 +1,7 @@ +--- +title: Delphi Careers +linkTitle: Careers +layout: single +--- + +{{}} diff --git a/content/about/careers/headless/2021_06_research_programmer_analyst.md b/content/about/careers/headless/2021_06_research_programmer_analyst.md new file mode 100644 index 000000000..3d6e5f867 --- /dev/null +++ b/content/about/careers/headless/2021_06_research_programmer_analyst.md @@ -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). diff --git a/content/about/careers/headless/2021_06_senior_data_engieer.md b/content/about/careers/headless/2021_06_senior_data_engieer.md new file mode 100644 index 000000000..7bb153c2f --- /dev/null +++ b/content/about/careers/headless/2021_06_senior_data_engieer.md @@ -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). diff --git a/content/about/careers/headless/index.md b/content/about/careers/headless/index.md new file mode 100644 index 000000000..441ef3a5a --- /dev/null +++ b/content/about/careers/headless/index.md @@ -0,0 +1,4 @@ +--- +# flag to disable rendering individual pages +headless: true +--- diff --git a/themes/delphi/assets/css/pages/_careers.scss b/themes/delphi/assets/css/pages/_careers.scss new file mode 100644 index 000000000..ecacbc0df --- /dev/null +++ b/themes/delphi/assets/css/pages/_careers.scss @@ -0,0 +1,4 @@ +.careers-grid { + margin-top: 64px; + margin-bottom: 64px !important; +} diff --git a/themes/delphi/layouts/partials/footer.html b/themes/delphi/layouts/partials/footer.html index 1e7493e77..8f2b1a516 100644 --- a/themes/delphi/layouts/partials/footer.html +++ b/themes/delphi/layouts/partials/footer.html @@ -33,6 +33,7 @@
About
diff --git a/themes/delphi/layouts/shortcodes/careers.html b/themes/delphi/layouts/shortcodes/careers.html new file mode 100644 index 000000000..13945b9f3 --- /dev/null +++ b/themes/delphi/layouts/shortcodes/careers.html @@ -0,0 +1,14 @@ +{{ $careers := .Site.GetPage "/about/careers/headless" }} +
+ {{ range (sort ($careers.Resources.ByType "page") ".PublishDate" "desc") }} +
+
{{ .PublishDate.Format "Jan 2006" }}
+
+
+

{{ .Title }}

+
{{ .Content }}
+
+
+
+ {{ end }} +