2026-05-06 08:59:44 -07:00
|
|
|
{% css %}
|
|
|
|
|
section > h2 {
|
|
|
|
|
background-color: var(--color-gray);
|
|
|
|
|
font-size: 2rem;
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin: 5rem 0 1rem;
|
|
|
|
|
}
|
|
|
|
|
{% endcss %}
|
|
|
|
|
|
|
|
|
|
<section>
|
|
|
|
|
<h2>Offers</h2>
|
|
|
|
|
|
|
|
|
|
{% set category = "offers" %}
|
|
|
|
|
{% include "listings.njk" %}
|
|
|
|
|
</section>
|
|
|
|
|
|
2026-05-18 13:56:47 -07:00
|
|
|
{#
|
2026-05-06 08:59:44 -07:00
|
|
|
<section>
|
|
|
|
|
<h2>Requests</h2>
|
|
|
|
|
|
|
|
|
|
{% set category = "requests" %}
|
|
|
|
|
{% include "listings.njk" %}
|
|
|
|
|
</section>
|
2026-05-18 13:56:47 -07:00
|
|
|
#}
|