continue building out request infrastructure
This commit is contained in:
22
_includes/daily.njk
Normal file
22
_includes/daily.njk
Normal file
@ -0,0 +1,22 @@
|
||||
{% 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>
|
||||
|
||||
<section>
|
||||
<h2>Requests</h2>
|
||||
|
||||
{% set category = "requests" %}
|
||||
{% include "listings.njk" %}
|
||||
</section>
|
||||
@ -1,13 +1,11 @@
|
||||
{% set tag = "offers" %}
|
||||
|
||||
<div id="listings">
|
||||
<div class="listings">
|
||||
{% for tag in collections | getKeys | removeCoreTags | sortAlphabetically %}
|
||||
<div class="category">
|
||||
<div class="category-title">
|
||||
<h2>{{ tag }}</h2>
|
||||
<p>{{ tag | getTagline }}</p>
|
||||
</div>
|
||||
{% set listings = collections[tag] | filterByDate(day) | filterByTag(tag) %}
|
||||
{% set listings = collections[tag] | filterByDate(day) | filterByTag(category) %}
|
||||
{% if listings | length == 0 %}
|
||||
<p>No listings.</p>
|
||||
{% endif %}
|
||||
|
||||
Reference in New Issue
Block a user