13 lines
247 B
HTML
13 lines
247 B
HTML
{% extends "index.html" %}
|
|
|
|
{% block content %}
|
|
|
|
{% set section = get_section(path="join-us/_index.md")%}
|
|
<main class="pt-16">
|
|
{{ section.content | safe}}
|
|
<hr>
|
|
{% include "partials/pageList.html" %}
|
|
</main>
|
|
|
|
{% endblock content %}
|