www_ourverse.tf/templates/layouts/products.html

31 lines
855 B
HTML
Raw Normal View History

2023-07-17 09:45:59 +00:00
{% extends "_default/base.html" %}
<!-- blog template
the template for displaying the blog page.
consists of a featured blog 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-->
2023-07-17 13:30:29 +00:00
{%- set section = get_section(path="products/_index.md") %}
2023-07-17 09:45:59 +00:00
{% for page in section.pages %}
{% if page.extra.isFeatured %}
{%- set_global featured = page %}
{% break %}
{% endif %}
{% endfor %}
2023-07-17 13:30:29 +00:00
{% include "partials/featuredProduct.html" %}
2023-07-17 09:45:59 +00:00
2023-07-17 09:52:13 +00:00
<div class="flex flex-col md:flex-row container mx-auto">
2023-07-17 13:30:29 +00:00
{% include "partials/productPosts.html" %}
{% include "partials/productSidebar.html" %}
2023-07-17 09:45:59 +00:00
</div>
</main>
{% endblock content %}