generated from inherentlee/11ty
21 lines
950 B
Plaintext
21 lines
950 B
Plaintext
<ul class="providerlist">
|
|||
|
|
{% for post in providerlist %}
|
||
|
|
<li class="providerlist-item{% if post.url == url %} providerlist-item-active{% endif %}">
|
||
|
|
<a href="{{ post.url }}" class="providerlist-link"
|
||
|
|
aria-label="{% if post.data.title %}{{ post.data.title }}{% else %}{{ post.url }}{% endif %}
|
||
|
|
{% if post.data.pronouns %}{{ post.data.pronouns }}{% endif %}
|
||
|
|
{% if post.data.location %}is based out of {{ post.data.location }}
|
||
|
|
{% else %}is digital-only{% endif %}">
|
||
|
|
{% if post.data.title %}{{ post.data.title }}{% else %}<code>{{ post.url }}</code>{% endif %}
|
||
|
|
|
||
|
|
{% if post.data.pronouns %}<span class="pronouns">{{ post.data.pronouns }}</span>{% endif %}
|
||
|
|
|
||
|
|
{% if post.data.location %}<span class="location">{{ post.data.location }}</span>
|
||
|
|
{% else %}<span class="online">digital-only</span>{% endif %}
|
||
|
|
</a>
|
||
|
|
{%- set tags = post.data.tags %}
|
||
|
|
{% include "taglist.njk" %}
|
||
|
|
</li>
|
||
|
|
{% endfor %}
|
||
|
|
</ul>
|