2019-09-06 15:06:45 +00:00
|
|
|
---
|
|
|
|
title: Home
|
2021-07-09 15:18:19 +00:00
|
|
|
permalink: /
|
2019-09-06 15:06:45 +00:00
|
|
|
---
|
2021-07-09 15:18:19 +00:00
|
|
|
|
2021-08-15 06:43:30 +00:00
|
|
|
<ul class="button-list">
|
|
|
|
{% for item in site.data.social_profiles %}
|
|
|
|
<li>
|
2022-11-07 04:28:53 +00:00
|
|
|
<a href="{{ item.url }}" rel="noopener me" style="background-color: #{{ item.background }}; color: #{{ item.colour }};">
|
2021-08-15 10:53:04 +00:00
|
|
|
{% if item.icon %}
|
2021-08-15 06:43:30 +00:00
|
|
|
<img src="/img/{{ item.icon.path }}" alt="{{ item.icon.alt }}">
|
2021-08-15 10:53:04 +00:00
|
|
|
{% endif %}
|
2021-08-15 06:43:30 +00:00
|
|
|
{{ item.name }}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|