lynnesbian.space/contact.html

22 líneas
600 B
HTML

---
title: "Contact"
layout: default
---
<h1>Contact</h1>
<div>
<p>
You can find me at any of the places listed below:
</p>
{%- for item in site.data.contact %}
<h2>{{ item.heading }}</h2>
<ul class='contact-list'>
{%- for entry in item.entries -%}
<li {%- if entry[2] %} class="icon {{ entry[2] }}" {%- endif -%}>{%- if entry[1] -%}<a href='{{ entry[1] }}'>{% endif %}{{ entry[0] }}{% if entry[1] %}</a>{% endif %}</li>
{% endfor %}
</ul>
{% endfor %}
<p>
I do have accounts on services other than these, but I don't use them enough for them to be worth sharing here.
</p>
</div>