Skip to content

Commit e5ac924

Browse files
committed
Added 'Careers' segment with up-to-date job openings
1 parent 9a44b52 commit e5ac924

File tree

7 files changed

+109
-1
lines changed

7 files changed

+109
-1
lines changed

_config.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -517,6 +517,25 @@ sag:
517517
affil: New York University
518518
url: https://zanna-researchteam.github.io/
519519

520+
#####################################
521+
############# Careers ############
522+
#####################################
523+
career-title: Careers
524+
career-description: Current job openings
525+
526+
roles:
527+
- title: Research Software Engineers
528+
description: In-person - Manhattan, NYC / Rolling Deadline
529+
link: https://apply.interfolio.com/160510
530+
531+
- title: Postdoctoral Researchers to build large scientific model with astronomical data
532+
description: In-person - Paris, France / Feb 14, 2025
533+
link: https://aas.org/jobregister/ad/09aadf56
534+
535+
- title: Postdoctoral Researchers to build large scientific model with solar physics data
536+
description: In-person - Manhattan, NYC / Feb 15, 2025
537+
link: https://apply.interfolio.com/161867
538+
520539
#####################################
521540
########## Pricing Tables ###########
522541
#####################################

_includes/header-page.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
<!-- <li><a href="{{ site.baseurl }}#testimonials">Testimonials</a></li> -->
3838
<!-- <li class="current-menu-item"><a href="{{ site.baseurl }}#blog">Blog</a></li> -->
3939
<li><a href="{{ site.baseurl }}/#team">Team</a></li>
40+
<li><a href="{{ site.baseurl }}/#careers">Careers</a></li>
4041
<!-- <li><a href="{{ site.baseurl }}#prices">Prices</a></li> -->
4142
<!-- <li><a href="{{ site.baseurl }}#contact">Contact</a></li> -->
4243
</ul>

_includes/header.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
<!-- <li><a href="#testimonials">Testimonials</a></li> -->
4242
<li><a href="#blog">News</a></li>
4343
<li><a href="#team">Team</a></li>
44+
<li><a href="#careers">Careers</a></li>
4445
<!-- <li><a href="#prices">Prices</a></li> -->
4546
<!-- <li><a href="#contact">Contact</a></li> -->
4647
</ul>

_includes/sections/careers.html

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<!-- Careers Section -->
2+
<section class="careers-section" id="careers">
3+
<div class="container">
4+
5+
<!-- Section Heading -->
6+
<div class="row text-center">
7+
8+
<!-- Section Header -->
9+
<header class="col-md-8 col-md-push-2 col-sm-12 section-header">
10+
<h2>{{ site.career-title }}</h2>
11+
<hr class="normal">
12+
</header>
13+
14+
<!-- Section Content -->
15+
<div class="col-md-8 col-sm-12 section-content">
16+
<p>{{ site.career-description }}</p>
17+
</div>
18+
<!-- Job listings -->
19+
{% for job in site.roles %}
20+
<div class="col-md-8 col-sm-12 job-description">
21+
<p></p><a href="{{ job.link }}" class="job-title">{{ job.title }}</a>
22+
{{ job.description }}</p>
23+
</div>
24+
{% endfor %}
25+
26+
</div>
27+
</div>
28+
</section>
29+

_scss/layout/_careers.scss

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
// Careers Section Styles
2+
section.careers-section {
3+
padding: 100px 0;
4+
background-color: $light-bkgd;
5+
6+
// Section Header
7+
header.section-header {
8+
h1, h2, h3, h4, h5, h6 {
9+
font-weight: bold;
10+
text-transform: uppercase;
11+
color: $secondary;
12+
}
13+
14+
hr.normal {
15+
margin: 40px auto;
16+
}
17+
}
18+
19+
// Section Content
20+
.section-content {
21+
p {
22+
font-size: 1.5rem;
23+
font-weight: bold;
24+
text-align: left;
25+
color: $secondary;
26+
margin-bottom: 1rem;
27+
}
28+
}
29+
30+
31+
// Job description styling
32+
.job-description{
33+
font-size: 1.2rem;
34+
font-weight: lighter;
35+
text-align: left;
36+
color: $secondary;
37+
text-decoration: none;
38+
margin-bottom: 1rem;
39+
}
40+
41+
// Job title styling
42+
.job-title {
43+
display: block;
44+
45+
font-weight: 500;
46+
color: $secondary;
47+
text-decoration: none;
48+
margin-bottom: 0.25rem;
49+
50+
&:hover {
51+
color: darken($primary, 15%);
52+
text-decoration: underline;
53+
}
54+
}
55+
}

css/style.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,5 +114,6 @@
114114
"layout/_institution",
115115
"layout/_prices",
116116
"layout/_contact",
117-
"layout/_footer";
117+
"layout/_footer",
118+
"layout/_careers";
118119

index.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,6 @@
1515

1616
{% include sections/institutions.html %}
1717

18+
{% include sections/careers.html %}
19+
1820
<!-- include sections/contact.html -->

0 commit comments

Comments
 (0)