Use lists in links lists instead of plain spans

master
Tait Hoyem 4 years ago
parent 649333105a
commit 48aa2fd155

@ -3,17 +3,23 @@ layout: default
title: "Links" title: "Links"
--- ---
{% for types in site.data.links %} {% for types in site.data.links %}
<section>
<header>
<h2>{{ types.heading }}</h2> <h2>{{ types.heading }}</h2>
<section class="contact-info"> </header>
{% for info in types.values %} {% for info in types.values %}
<p><span class="bold">{{ info.name }}</span> - <ul>
<li>
<span class="bold">{{ info.name }}</span> -
<a href="{{ info.value }}" class="mono"> <a href="{{ info.value }}" class="mono">
{% if info.label != "INHERIT" %} {% if info.label != "INHERIT" %}
{{ info.label }} {{ info.label }}
{% else %} {% else %}
{{ info.value }} {{ info.value }}
{% endif %} {% endif %}
</a></p> </a>
</li>
</ul>
{% endfor %} {% endfor %}
</section> </section>
{% endfor %} {% endfor %}

Loading…
Cancel
Save