This repository has been archived on 2026-01-05. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
www_threefold_io/templates/layouts/partners.html
timurgordon db0b0ed39f Revert "remove archive and templates"
This reverts commit 67bdf28216.
2024-03-06 16:24:35 -05:00

19 lines
673 B
HTML

{% extends "_default/base.html" %}
<!-- partners template
the template for displaying the partners page.
consists of a featured partners row,
a paginated list of posts (sorted by date),
and a side nav for category and featured post navigation
-->
{% block content %}
<main>
<!--sets global featured variable as the most recent post with the isFeatured tag-->
{%- set section = get_section(path="partners/_index.md") %}
{% include "partials/intro.html" %}
<div class="flex flex-row container mx-auto my-10">
{% include "partials/partnersCards.html" %}
{% include "partials/partnersSidebar.html" %}
</div>
</main>
{% endblock content %}