{% extends 'careers/base.html' %}{% load i18n wagtailcore_tags %} {% block content %}
{% include 'careers/components/breadcrumbs.html' %}

{{ index.title }}

{{ index.content }}

{% trans 'Latest Jobs' %}

    {% for job in jobs %}
  1. {% trans 'View' %}

    {{ job.title }}

    {{ job.description }}

    {% if job.is_remote %} {% endif %} {% if job.country %} {% endif %} {{ job.latest_revision_created_at|date:'Y/m/d' }}
  2. {% empty %}
  3. {% trans 'No Jobs' %}

    {% trans 'Latest Jobs will appear here.' %}

  4. {% endfor %}

{% trans 'Categories' %}

    {% for page in index.get_children.specific %}
  1. {% trans 'Read' %}

    {{ page.title }}

    {{ page.description|richtext }}

  2. {% empty %}
  3. {% trans 'No categories' %}

    {% trans 'Published categories will appear here.' %}

  4. {% endfor %}
{% endblock %} {% block drawer_content %}
  • {{ index.get_parent.title }}
  • {% for page in index.get_children %}
  • {{ page.title }}
  • {% endfor %} {% endblock %}