-
Notifications
You must be signed in to change notification settings - Fork 45
/
current-jobs.html
21 lines (19 loc) · 1.02 KB
/
current-jobs.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
layout: static_page_no_right_menu
permalink: /current-jobs/
events: false
title: Current job opportunities
---
<div class="row my-col-12-zebra">
{% for post in site.posts limit: 30 %}
{% if post.categories contains "jobs" and post.job-year >= 2024 %}
<div class="col-12 my-bordered-news-snippets">
<h2 class="mb-2 mt-3"><a href="{{site.url }}{{ post.url }}" style="color:inherit;">{{ post.title }}</a></h2>
<h6>{{ post.date | date: "%B %-d, %Y" }}</h6>
{% if post.image != null %} {% if post.image-address != null %}<a href="{{ post.image-address | replace: '__SITE_URL__', site.url }}">{% else %}<a href="{{site.url }}{{ post.url }}">{% endif %}<img src="{{ post.image | replace: '__SITE_URL__', site.url }}" alt="{{ post.image-alt }}" title="{{ post.image-alt }}" style="{% if post.image-wide != true %}max-width:70%;{% else %}max-width:100%;{% endif %}max-height:200px;height:auto;width:auto;" class="mb-3 mt-2"></a>
{% endif %} {{ post.content | markdownify }}
</div>
<!--/span-->
{% endif %}
{% endfor %}
</div>