31 lines
855 B
HTML
31 lines
855 B
HTML
{% 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-->
|
|
{%- set section = get_section(path="products/_index.md") %}
|
|
{% for page in section.pages %}
|
|
{% if page.extra.isFeatured %}
|
|
{%- set_global featured = page %}
|
|
{% break %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
{% include "partials/featuredProduct.html" %}
|
|
|
|
<div class="flex flex-col md:flex-row container mx-auto">
|
|
{% include "partials/productPosts.html" %}
|
|
{% include "partials/productSidebar.html" %}
|
|
</div>
|
|
</main>
|
|
|
|
{% endblock content %}
|