design fixes, hiring subpages, and hiring categories added

This commit is contained in:
timurgordon
2022-02-23 21:25:51 +03:00
parent a4c636f176
commit 05ddd75f83
18 changed files with 448 additions and 34 deletions

18
templates/section.html Normal file
View File

@@ -0,0 +1,18 @@
{% extends "_default/base.html" %}
{% block content %}
<main class="pt-16">
{{ section.content | safe}}
<div class="mx-20 flex">
{% for page in section.pages %}
<div class="w-3/12 m-8" >
{% include "partials/pageBox.html" %}
</div>
{% endfor %}
</div>
</main>
{% endblock content %}