website/index.html

16 lines
479 B
HTML
Raw 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>
<a href="{{ item.url }}" rel="noopener" style="background-color: #{{ item.background }}; color: #{{ item.color }};">
<img src="/img/{{ item.icon.path }}" alt="{{ item.icon.alt }}">
{{ item.name }}
</a>
</li>
{% endfor %}
</ul>