1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21---
---
<?xml version="1.0" encoding="UTF-8"?>
<!--
Font Awesome Free 5.12.0 by @fontawesome - https://fontawesome.com
License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
-->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
{% assign keys = 'navigation,external' | split: ',' %}
{% for key in keys %}
{% for link in site[key] %}
{% assign icon = link.icon %}
{% assign svg = site.data.font-awesome.icons[icon].svg | first %}
<symbol id="{{ icon }}" viewBox="0 0 {{ svg[1].width }} {{ svg[1].height }}"><path d="{{ svg[1].path }}" /></symbol>
{% endfor %}
{% endfor %}
</svg>