Use lists in links lists instead of plain spans

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

@ -3,19 +3,25 @@ layout: default
title: "Links" title: "Links"
--- ---
{% for types in site.data.links %} {% for types in site.data.links %}
<h2>{{ types.heading }}</h2> <section>
<section class="contact-info"> <header>
{% for info in types.values %} <h2>{{ types.heading }}</h2>
<p><span class="bold">{{ info.name }}</span> - </header>
{% for info in types.values %}
<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>
{% endfor %} </li>
</section> </ul>
{% endfor %}
</section>
{% endfor %} {% endfor %}
All my big projects are on my [homepage](/). All my big projects are on my [homepage](/).

Loading…
Cancel
Save