22 lines
518 B
HTML
22 lines
518 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>
|
||
|
{%- for entry in item.entries -%}
|
||
|
<li>{%- 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>
|