snipt/jobs/templates/jobs/jobs.html

45 lines
1.7 KiB
HTML
Raw Normal View History

2013-09-05 10:28:35 -07:00
{% extends "base.html" %}
{% load pagination_tags %}
{% block page-title %}Snipt Jobs{% endblock %}
{% block body-class %}{{ block.super }} static jobs{% endblock %}
{% block breadcrumb %}
<li><a href="/jobs/">Snipt Jobs</a></li>
{% endblock %}
{% block content %}
<section class="jobs">
<ul>
{% for job in jobs %}
<li>
<a href="{{ job.url }}" class="group">
<span class="left">
<span class="job">{{ job.title }}</span>
<span class="company">{{ job.company }}</span>
</span>
<span class="right">
<span class="location">{{ job.location }}</span>
</span>
</a>
</li>
{% endfor %}
</ul>
</section>
{% endblock %}
2013-09-05 10:47:24 -07:00
{% block aside-top %}
2013-09-05 11:43:21 -07:00
<div class="job-twitter">
<a href="https://twitter.com/sniptjobs" class="twitter-follow-button" data-show-count="false" data-size="large">Follow @sniptjobs</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
</div>
2013-09-05 10:47:24 -07:00
<div class="post-job">
<strong>Want to post a job?</strong>
<p>
Job posts are currently <i>invite only</i>. If you'd like to be considered for future posts, please email <a href="mailto:jobs@snipt.net">jobs@snipt.net</a>.
</p>
</div>
{% endblock %}