website/index.html

18 lines
511 B
HTML
Raw Permalink Normal View History

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