forked from NYCPlanning/jobs
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (36 loc) · 1.44 KB
/
index.html
File metadata and controls
44 lines (36 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
---
layout: default
---
<div class="home">
<!-- <h1 class="page-heading">Current Technical Job Openings</h1> -->
<meta http-equiv="refresh" content="0; url=https://primetag.com/careers" />
<script>window.location.replace("https://primetag.com/careers");</script>
<p>This page has been moved to <a href="https://primetag.com/careers">https://primetag.com/careers</a></p>
<ul class="post-list">
{% for post in site.posts %}
<li class="post">
<h2>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
<div class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</div>
</h2>
<div class="post-wrapper">
<div class="post-tags">
<span class="job-position">{{ post.categories }}</span>
{% if post.tags %}
{% for tag in post.tags %}
<span class="label">{{ tag }}</span>
{% endfor %}
{% endif %}
{% if post.location %}
<div class="marker">
<i class="fa fa-map-marker"></i> {{ post.location }}<br>
</div>
{% endif %}
</div>
<p class="job-description">{{ post.description | replace:'|','<span class="text-pipe" />' }}</p>
{% endfor %}
</div>
</li>
</ul>
<!-- <p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p> -->
</div>