Skip to content

Commit

Permalink
Add jobs page (#255)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrealeone authored Feb 21, 2024
1 parent 380101b commit e7cdc8d
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
3 changes: 3 additions & 0 deletions _includes/navbar.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@
<li class="nav-item">
<a class="nav-link" aria-current="page" href="/events">Events</a>
</li>
<li class="nav-item">
<a class="nav-link" aria-current="page" href="/jobs">Jobs</a>
</li>
<li class="nav-item">
<a class="nav-link" aria-current="page" href="/retreat">Retreat v{{site.RETREAT_EDITION}}</a>
</li>
Expand Down
41 changes: 41 additions & 0 deletions jobs.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
---
layout: site_base
title: Jobs
description: Job offers from the Speck&Tech community
---

<div>
<div class="container">
<div class="row">
<div class="col-12 d-flex align-items-center my-4">
<a href="/">S&amp;T</a> <span class="mx-2 d-inline-block">/</span>
<h1>{{ page.title }}</h1>
</div>
</div>
</div>
<div class="container">
<div class="row py-5">
<div class="col-12 offset-lg-2 col-lg-8 text-lg">
<p class="mt-3">
Here are the latest job offers coming from our dear sponsors. We are constantly updating this page with new opportunities, so make sure to check it out regularly.
</p>
</div>
</div>
<div class="row mt-4 mb-5 pb-5">
<div class="col-12">
{% for post in site.job_offers reversed %}
<article class="{% if forloop.first %}first{% elsif forloop.last %}last{% else %}middle{% endif %}">
<div class="article-head">
<p class="date">{{ post.date | date: "%b %d, %Y" }}</p>
<h3 class="title">
<a href="{{ post.url | remove_first:'/events' }}" class="js-pjax">{{ post.title }}</a>
</h3>
</div>
</article>
{% if forloop.last == false %}
<hr />{% endif %}
{% endfor %}
</div>
</div>
</div>
</div>

0 comments on commit e7cdc8d

Please sign in to comment.