-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f87860a
commit fba3383
Showing
8 changed files
with
73 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,6 +48,10 @@ | |
margin: 0; | ||
} | ||
|
||
.link { | ||
display: block; | ||
} | ||
|
||
.remote { | ||
padding: 5px 15px; | ||
color: #fff; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<section class="js-scroll vacancies section"> | ||
<div class="container"> | ||
<ul class="list"> | ||
<li class="vacancy"> | ||
<div class="head"> | ||
<h5 class="label">{{ page.label }}</h5> | ||
<div> | ||
{% if page.remote_allowed %} | ||
<span class="remote">Remote Allowed</span> | ||
{% endif %} | ||
{% if page.hot %} | ||
<span class="hot">Hot</span> | ||
{% endif %} | ||
</div> | ||
</div> | ||
<h4 class="name">{{ page.name }}</h4> | ||
<div class="location">{{ page.location }} | <strong class="sublocation">{{ page.additional_location }}</strong></div> | ||
<div class="details"> | ||
{% for item in page.details %} | ||
<div class="wrapper"> | ||
<strong class="heading">{{ item.heading }}</strong> | ||
{% for field in item.fields %} | ||
<p class="text">- {{ field }}</p> | ||
{% endfor %} | ||
</div> | ||
{% endfor %} | ||
</div> | ||
<a href="#careers-contact-form" class="btn btn-primary js-anchor">Apply</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</section> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,10 @@ | ||
{% include head.html %} | ||
<div class="no-menu"> | ||
{% include header.html %} | ||
{% include header.html background='-black' %} | ||
</div> | ||
<div class="main-wrapper"> | ||
|
||
<section class="js-scroll vacancies section"> | ||
<div class="container"> | ||
<ul class="list"> | ||
<li class="vacancy fade-right delay-{{ delay }}"> | ||
<div class="head"> | ||
<h5 class="label">{{ page.label }}</h5> | ||
<div> | ||
{% if page.remote_allowed %} | ||
<span class="remote">Remote Allowed</span> | ||
{% endif %} | ||
{% if page.hot %} | ||
<span class="hot">Hot</span> | ||
{% endif %} | ||
</div> | ||
</div> | ||
<h4 class="name">{{ page.name }}</h4> | ||
<div class="location">{{ page.location }} | <strong class="sublocation">{{ page.additional_location }}</strong></div> | ||
<div class="details"> | ||
{% for item in page.details %} | ||
<div class="wrapper"> | ||
<strong class="heading">{{ item.heading }}</strong> | ||
{% for field in item.fields %} | ||
<p class="text">- {{ field }}</p> | ||
{% endfor %} | ||
</div> | ||
{% endfor %} | ||
</div> | ||
<a href="#careers-contact-form" class="btn btn-primary js-anchor">Apply</a> | ||
<span class="arrow js-vacancy-opener"></span> | ||
</li> | ||
</ul> | ||
</div> | ||
</section> | ||
|
||
{% include careers/vacancy.html %} | ||
{% include careers/contact-form.html %} | ||
</div> | ||
{% include footer.html %} | ||
{% include scripts.html %} |