2016-03-02 07:23:19 +00:00
|
|
|
{% extends "templates/web.html" %}
|
|
|
|
|
|
|
|
{% block breadcrumbs %}
|
|
|
|
{% include "templates/includes/breadcrumbs.html" %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block header %}
|
|
|
|
<h1>{{ job_title }}</h1>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block page_content %}
|
|
|
|
|
2016-04-15 09:22:23 +00:00
|
|
|
{%- if description -%}
|
2016-03-02 07:23:19 +00:00
|
|
|
<div>{{ description }}</div>
|
2016-04-15 09:22:23 +00:00
|
|
|
{% endif %}
|
2016-12-19 11:36:26 +00:00
|
|
|
<p style='margin-top: 30px'>
|
2016-03-28 06:00:05 +00:00
|
|
|
<a class='btn btn-primary'
|
2017-02-10 12:28:41 +00:00
|
|
|
href='/job_application?new=1&job_title={{ doc.name }}'>
|
2016-03-02 07:23:19 +00:00
|
|
|
{{ _("Apply Now") }}</a>
|
2016-03-28 06:00:05 +00:00
|
|
|
</p>
|
2016-03-02 07:23:19 +00:00
|
|
|
|
|
|
|
{% endblock %}
|