generated from inherentlee/11ty
big ol copy
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user