You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
450 B

---
layout: default
---
{% for types in site.data.links %}
<h2>{{ types.heading }}</h2>
<section class="contact-info">
{% for info in types.values %}
<p><span class="bold">{{ info.name }}</span> -
<a href="{{ info.value }}" class="mono">
{% if info.label != "INHERIT" %}
{{ info.label }}
{% else %}
{{ info.value }}
{% endif %}
</a></p>
{% endfor %}
</section>
{% endfor %}