jekyll-theme-profile 0.3.0 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (54) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +121 -55
  3. data/_config.yml +82 -55
  4. data/_includes/breadcrumbs.html +59 -0
  5. data/_includes/header.html +7 -7
  6. data/_includes/link-card.html +6 -6
  7. data/_includes/masthead.html +28 -32
  8. data/_includes/mini-repo-info-card.html +21 -0
  9. data/_includes/nav.html +6 -67
  10. data/_includes/social.html +228 -21
  11. data/_includes/toggle.html +4 -0
  12. data/_layouts/default.html +91 -30
  13. metadata +5 -43
  14. data/assets/brands/behance.svg +0 -1
  15. data/assets/brands/docker.svg +0 -1
  16. data/assets/brands/dribbble.svg +0 -1
  17. data/assets/brands/facebook.svg +0 -1
  18. data/assets/brands/hackerrank.svg +0 -1
  19. data/assets/brands/instagram.svg +0 -1
  20. data/assets/brands/keybase.svg +0 -1
  21. data/assets/brands/linkedin.svg +0 -1
  22. data/assets/brands/mastodon.svg +0 -1
  23. data/assets/brands/medium.svg +0 -1
  24. data/assets/brands/stackoverflow.svg +0 -1
  25. data/assets/brands/telegram.svg +0 -1
  26. data/assets/brands/threads.svg +0 -1
  27. data/assets/brands/twitter.svg +0 -1
  28. data/assets/brands/unsplash.svg +0 -1
  29. data/assets/brands/vk.svg +0 -1
  30. data/assets/brands/vscode.svg +0 -1
  31. data/assets/brands/x.svg +0 -3
  32. data/assets/brands/youtube.svg +0 -1
  33. data/assets/img/blog.png +0 -0
  34. data/assets/img/icon-bg.png +0 -0
  35. data/assets/img/icon-sidebar.png +0 -0
  36. data/assets/img/icon-stacked.png +0 -0
  37. data/assets/img/icon-topbar.png +0 -0
  38. data/assets/img/links.png +0 -0
  39. data/assets/img/octocat.png +0 -0
  40. data/assets/img/repositories.png +0 -0
  41. data/assets/img/sidebar-laptop.png +0 -0
  42. data/assets/img/sidebar-phone.png +0 -0
  43. data/assets/img/sidebar-preview.png +0 -0
  44. data/assets/img/sidebar-tablet.png +0 -0
  45. data/assets/img/social-media.png +0 -0
  46. data/assets/img/stacked-laptop.png +0 -0
  47. data/assets/img/stacked-phone.png +0 -0
  48. data/assets/img/stacked-preview.png +0 -0
  49. data/assets/img/stacked-tablet.png +0 -0
  50. data/assets/img/tobpar-phone.png +0 -0
  51. data/assets/img/topbar-laptop.png +0 -0
  52. data/assets/img/topbar-preview.png +0 -0
  53. data/assets/img/topbar-tablet.png +0 -0
  54. data/assets/img/user-image.jpg +0 -0
data/_includes/nav.html CHANGED
@@ -1,68 +1,7 @@
1
- <div class="f5 d-flex">
2
- {%- if include.breadcrumbs %}
3
- <div class="d-flex flex-items-center">
4
- <nav aria-label="Breadcrumb">
5
- <ol class="breadcrumb">
6
- {%- assign crumbs = page.url | split: '/' %}
7
- {%- assign url = "/" %}
8
- {%- for crumb in crumbs %}
9
- {%- if crumb == "" %}
10
- <li class="breadcrumb-item">
11
- <a href="{{ site.baseurl}}/">home</a>
12
- </li>
13
- {%- continue %}
14
- {%- endif %}
15
- {%- assign asset_url = url | append: "assets/" | append: crumb | append: "/" %}
16
- {%- assign isa_asset = site.pages | where: "url", asset_url | first %}
17
- {%- assign index_url = url | append: crumb | append: "/index.html" %}
18
- {%- assign isa_index = site.pages | where: "url", index_url | first %}
19
- {%- assign folder_url = url | append: crumb | append: "/" %}
20
- {%- assign isa_folder = site.pages | where: "url", folder_url | first %}
21
- {%- assign url = url | append: crumb %}
22
- {%- assign isa_page = site.pages | where: "url", url | first %}
23
- {%- assign isa_post = site.posts | where: "url", url | first %}
24
-
25
- {%- assign nice_crumb = crumb | url_decode | replace: ".html", "" | replace: "-", " " | replace: "_", " " | downcase %}
26
-
27
- {%- comment %}
28
- Checking the crumb: {{ crumb }}
29
- [asset url: {{ asset_url }}]
30
- [index url: {{ index_url }}]
31
- [folder_url: {{ folder_url }}]
32
- [url: {{ url }}]
33
- {% for p in site.pages %}
34
- {{ p.url }}
35
- {% endfor %}
36
- {%- endcomment %}
37
-
38
- {%- if page.url == url or page.url == index_url or page.url == folder_url %}
39
- <li class="breadcrumb-item breadcrumb-item-selected" aria-current="page">
40
- <a href="{{ page.url | relative_url }}">{{ nice_crumb }}</a>
41
- </li>
42
- {%- break %}
43
- {%- elsif isa_page or isa_post or isa_index or isa_folder %}
44
- <li class="breadcrumb-item">
45
- <a href="{{ url | relative_url }}">{{ nice_crumb }}</a>
46
- </li>
47
- {%- elsif isa_asset %}
48
- <li class="breadcrumb-item">
49
- <a href="{{ asset_url | relative_url }}">{{ nice_crumb }}</a>
50
- </li>
51
- {%- else %}
52
- <li class="breadcrumb-item">
53
- {{ nice_crumb }}
54
- </li>
55
- {%- endif %}
56
- {%- unless crumb == crumbs.last %}{%- assign url = url | append: "/" %}{%- endunless %}
57
- {%- endfor %}
58
- </ol>
59
- </nav>
60
- </div>
61
- {%- endif %}
62
- <div class="flex-1">
63
- </div>
64
- <div>
65
- <button id="theme-toggle" class="btn btn-sm mr-2" type="button"><span id="theme-icon"
66
- class="octicon octicon-moon-24"></span></button>
67
- </div>
1
+ {%- for nav_item in site.nav %}
2
+ <div class="Header-item flex-justify-center f4 p-2">
3
+ <a href="{{ nav_item.url | relative_url }}" class="Header-link" {% if page.url == nav_item.url %}aria-selected="true"{% endif %}>
4
+ {{ nav_item.name }}
5
+ </a>
68
6
  </div>
7
+ {%- endfor %}
@@ -1,10 +1,15 @@
1
1
 
2
- <div class="d-flex flex-wrap flex-items-start flex-justify-center mt-1">
2
+ <div class="d-flex flex-wrap flex-items-start flex-justify-center">
3
3
 
4
4
  {%- if site.social_media.behance %}
5
5
  <div class="mr-3">
6
6
  <a href="https://www.behance.net/{{ site.social_media.behance }}" class="tooltipped tooltipped-se" aria-label="Behance: {{ site.social_media.behance }}">
7
- <img src="/assets/brands/behance.svg" alt="behance" />
7
+ {%- if site.icon_color %}
8
+ {%- assign color = site.icon_color %}
9
+ {%- else %}
10
+ {%- assign color = "#053eff" %}
11
+ {%- endif %}
12
+ <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 455 455" fill="{{ color }}"> <path style="fill-rule:evenodd;clip-rule:evenodd;" d="M181.289,242.565c-5.597-4.246-13.062-6.358-22.245-6.358h-46.379v53.356 h45.524c4.211,0,8.205-0.373,11.963-1.214c3.815-0.834,7.199-2.156,10.052-4.11c2.853-1.879,5.216-4.455,6.934-7.731 c1.724-3.247,2.55-7.465,2.55-12.559C189.688,253.961,186.879,246.873,181.289,242.565z"/> <path style="fill-rule:evenodd;clip-rule:evenodd;" d="M174.606,201.654c4.907-3.582,7.286-9.502,7.286-17.621 c0-4.509-0.79-8.235-2.379-11.126c-1.645-2.892-3.822-5.155-6.574-6.739c-2.73-1.649-5.813-2.788-9.391-3.402 c-3.513-0.687-7.199-0.956-10.972-0.956h-39.913v45.276h43.168C163.391,207.086,169.649,205.293,174.606,201.654z"/> <path style="fill-rule:evenodd;clip-rule:evenodd;" d="M0,0v455h455V0H0z M275.636,141.802h78.54v19.12h-78.54V141.802z M226.605,291.707c-3.793,7.204-8.959,13.041-15.326,17.546c-6.416,4.545-13.788,7.878-22.044,10.048 c-8.162,2.17-16.64,3.262-25.32,3.262H70V128.804h91.351c9.269,0,17.632,0.801,25.277,2.458c7.602,1.613,14.09,4.304,19.572,7.993 c5.396,3.69,9.621,8.597,12.645,14.78c2.953,6.09,4.434,13.717,4.434,22.734c0,9.754-2.213,17.901-6.639,24.414 c-4.462,6.502-11.014,11.838-19.773,15.98c11.927,3.427,20.758,9.463,26.613,18.045c5.885,8.641,8.766,18.979,8.766,31.101 C232.245,276.134,230.363,284.595,226.605,291.707z M384.755,261.692H283.518c0,11.09,3.75,21.591,9.542,27.227 c5.769,5.637,14.111,8.471,24.917,8.471c7.774,0,14.492-1.965,20.125-5.881c5.583-3.912,8.981-8.094,10.296-12.437h33.935 c-5.453,16.888-13.73,28.944-25.018,36.202c-11.158,7.289-24.768,10.921-40.624,10.921c-11.051,0-20.995-1.789-29.926-5.313 c-8.924-3.568-16.382-8.568-22.654-15.085c-6.115-6.549-10.864-14.287-14.248-23.38c-3.348-9.043-5.037-19.055-5.037-29.905 c0-10.49,1.753-20.291,5.18-29.348c3.499-9.089,8.335-16.931,14.694-23.509c6.373-6.614,13.931-11.834,22.733-15.645 c8.802-3.798,18.508-5.709,29.258-5.709c11.869,0,22.266,2.284,31.176,6.937c8.88,4.588,16.159,10.807,21.878,18.592 c5.719,7.771,9.786,16.659,12.33,26.628C384.597,240.41,385.481,250.807,384.755,261.692z"/> <path style="fill-rule:evenodd;clip-rule:evenodd;" d="M315.534,207.398c-6.157,0-11.252,1.035-15.332,3.147 c-3.988,2.084-7.257,4.677-9.757,7.731c-2.486,3.104-4.182,6.38-5.166,9.883c-0.991,3.413-1.58,6.51-1.76,9.248h62.697 c-0.92-9.826-4.283-17.09-8.881-22.198C332.757,210.139,324.997,207.398,315.534,207.398z"/></svg>
8
13
  </a>
9
14
  </div>
10
15
  {%- endif %}
@@ -12,7 +17,12 @@
12
17
  {%- if site.social_media.dribbble %}
13
18
  <div class="mr-3">
14
19
  <a href="https://dribbble.com/{{ site.social_media.dribbble }}" class="tooltipped tooltipped-se" aria-label="Dribbble: {{ site.social_media.dribbble }}">
15
- <img src="/assets/brands/dribbble.svg" alt="dribbble" />
20
+ {%- if site.icon_color %}
21
+ {%- assign color = site.icon_color %}
22
+ {%- else %}
23
+ {%- assign color = "#ea4c89" %}
24
+ {%- endif %}
25
+ <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 512 512" fill="{{ color }}"><path d="M256 8C119.252 8 8 119.252 8 256s111.252 248 248 248 248-111.252 248-248S392.748 8 256 8zm163.97 114.366c29.503 36.046 47.369 81.957 47.835 131.955-6.984-1.477-77.018-15.682-147.502-6.818-5.752-14.041-11.181-26.393-18.617-41.614 78.321-31.977 113.818-77.482 118.284-83.523zM396.421 97.87c-3.81 5.427-35.697 48.286-111.021 76.519-34.712-63.776-73.185-116.168-79.04-124.008 67.176-16.193 137.966 1.27 190.061 47.489zm-230.48-33.25c5.585 7.659 43.438 60.116 78.537 122.509-99.087 26.313-186.36 25.934-195.834 25.809C62.38 147.205 106.678 92.573 165.941 64.62zM44.17 256.323c0-2.166.043-4.322.108-6.473 9.268.19 111.92 1.513 217.706-30.146 6.064 11.868 11.857 23.915 17.174 35.949-76.599 21.575-146.194 83.527-180.531 142.306C64.794 360.405 44.17 310.73 44.17 256.323zm81.807 167.113c22.127-45.233 82.178-103.622 167.579-132.756 29.74 77.283 42.039 142.053 45.189 160.638-68.112 29.013-150.015 21.053-212.768-27.882zm248.38 8.489c-2.171-12.886-13.446-74.897-41.152-151.033 66.38-10.626 124.7 6.768 131.947 9.055-9.442 58.941-43.273 109.844-90.795 141.978z"/></svg>
16
26
  </a>
17
27
  </div>
18
28
  {%- endif %}
@@ -20,7 +30,12 @@
20
30
  {%- if site.social_media.docker %}
21
31
  <div class="mr-3">
22
32
  <a href="https://hub.docker.com/u/{{ site.social_media.docker }}" class="tooltipped tooltipped-se" aria-label="Docker: {{ site.social_media.docker }}">
23
- <img src="/assets/brands/docker.svg" alt="docker" />
33
+ {%- if site.icon_color %}
34
+ {%- assign color = site.icon_color %}
35
+ {%- else %}
36
+ {%- assign color = "#0db7ed" %}
37
+ {%- endif %}
38
+ <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 512 512" fill="{{ color }}"><path d="M507,211.16c-1.42-1.19-14.25-10.94-41.79-10.94a132.55,132.55,0,0,0-21.61,1.9c-5.22-36.4-35.38-54-36.57-55l-7.36-4.28-4.75,6.9a101.65,101.65,0,0,0-13.06,30.45c-5,20.7-1.9,40.2,8.55,56.85-12.59,7.14-33,8.8-37.28,9H15.94A15.93,15.93,0,0,0,0,262.07,241.25,241.25,0,0,0,14.75,348.9C26.39,379.35,43.72,402,66,415.74,91.22,431.2,132.3,440,178.6,440a344.23,344.23,0,0,0,62.45-5.71,257.44,257.44,0,0,0,81.69-29.73,223.55,223.55,0,0,0,55.57-45.67c26.83-30.21,42.74-64,54.38-94h4.75c29.21,0,47.26-11.66,57.23-21.65a63.31,63.31,0,0,0,15.2-22.36l2.14-6.18Z"/><path d="M47.29,236.37H92.4a4,4,0,0,0,4-4h0V191.89a4,4,0,0,0-4-4H47.29a4,4,0,0,0-4,4h0v40.44a4.16,4.16,0,0,0,4,4h0"/><path d="M109.5,236.37h45.12a4,4,0,0,0,4-4h0V191.89a4,4,0,0,0-4-4H109.5a4,4,0,0,0-4,4v40.44a4.16,4.16,0,0,0,4,4"/><path d="M172.9,236.37H218a4,4,0,0,0,4-4h0V191.89a4,4,0,0,0-4-4H172.9a4,4,0,0,0-4,4h0v40.44a3.87,3.87,0,0,0,4,4h0"/><path d="M235.36,236.37h45.12a4,4,0,0,0,4-4V191.89a4,4,0,0,0-4-4H235.36a4,4,0,0,0-4,4h0v40.44a4,4,0,0,0,4,4h0"/><path d="M109.5,178.57h45.12a4.16,4.16,0,0,0,4-4V134.09a4,4,0,0,0-4-4H109.5a4,4,0,0,0-4,4v40.44a4.34,4.34,0,0,0,4,4"/><path d="M172.9,178.57H218a4.16,4.16,0,0,0,4-4V134.09a4,4,0,0,0-4-4H172.9a4,4,0,0,0-4,4h0v40.44a4,4,0,0,0,4,4"/><path d="M235.36,178.57h45.12a4.16,4.16,0,0,0,4-4V134.09a4.16,4.16,0,0,0-4-4H235.36a4,4,0,0,0-4,4h0v40.44a4.16,4.16,0,0,0,4,4"/><path d="M235.36,120.53h45.12a4,4,0,0,0,4-4V76a4.16,4.16,0,0,0-4-4H235.36a4,4,0,0,0-4,4h0v40.44a4.17,4.17,0,0,0,4,4"/><path d="M298.28,236.37H343.4a4,4,0,0,0,4-4V191.89a4,4,0,0,0-4-4H298.28a4,4,0,0,0-4,4h0v40.44a4.16,4.16,0,0,0,4,4"/></svg>
24
39
  </a>
25
40
  </div>
26
41
  {%- endif %}
@@ -28,7 +43,12 @@
28
43
  {%- if site.social_media.facebook %}
29
44
  <div class="mr-3">
30
45
  <a href="https://www.facebook.com/{{ site.social_media.facebook }}" class="tooltipped tooltipped-se" aria-label="Facebook: {{ site.social_media.facebook }}">
31
- <img src="/assets/brands/facebook.svg" alt="facebook" />
46
+ {%- if site.icon_color %}
47
+ {%- assign color = site.icon_color %}
48
+ {%- else %}
49
+ {%- assign color = "#3c5a99" %}
50
+ {%- endif %}
51
+ <svg xmlns="http://www.w3.org/2000/svg" height="20" viewBox="0 0 15.3 15.4" fill="{{ color }}"><path d="M14.5 0H.8a.88.88 0 0 0-.8.9v13.6a.88.88 0 0 0 .8.9h7.3v-6h-2V7.1h2V5.4a2.87 2.87 0 0 1 2.5-3.1h.5a10.87 10.87 0 0 1 1.8.1v2.1h-1.3c-1 0-1.1.5-1.1 1.1v1.5h2.3l-.3 2.3h-2v5.9h3.9a.88.88 0 0 0 .9-.8V.8a.86.86 0 0 0-.8-.8z"/></svg>
32
52
  </a>
33
53
  </div>
34
54
  {%- endif %}
@@ -36,7 +56,12 @@
36
56
  {%- if site.social_media.hackerrank %}
37
57
  <div class="mr-3">
38
58
  <a href="https://www.hackerrank.com/{{ site.social_media.hackerrank }}" class="tooltipped tooltipped-se" aria-label="HackerRank: {{ site.social_media.hackerrank }}">
39
- <img src="/assets/brands/hackerrank.svg" alt="hackerrank" />
59
+ {%- if site.icon_color %}
60
+ {%- assign color = site.icon_color %}
61
+ {%- else %}
62
+ {%- assign color = "#00B760" %}
63
+ {%- endif %}
64
+ <svg height="20" viewBox="0 0 126 139" fill="{{ color }}" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" xml:space="preserve" ><path xmlns="http://www.w3.org/2000/svg" d="M125.9,62.4L125.9,62.4c-0.2-13-1.2-24.7-2.9-27.6c-1.4-2.4-8.5-7.5-17.3-13.1L82.1,8C73.2,3.3,65.7,0,63,0 c-3.3,0-14,5-25.4,11.4C28.9,16.2,19.8,21.7,13,26.3C7.8,29.9,3.9,33,2.9,34.8s-1.8,6.8-2.2,13.5l0,0c-0.6,8.4-0.8,19.3-0.6,29.3 c0.3,12.7,1.2,23.9,2.8,26.7C6.9,111.1,55.1,139,63,139c3.3,0,13.5-4.8,24.6-10.9c8.8-4.8,18.1-10.5,25.1-15.2l0,0 c5.4-3.7,9.3-6.8,10.4-8.6s1.8-6.7,2.2-13.2l0,0C125.9,82.9,126.1,72.2,125.9,62.4z M91.3,98.8l-9.7,8.8c-0.3,0.4-0.7,0.6-1.2,0.6 c-0.5,0-1-0.2-1.3-0.6L70,98.8c-0.7-0.4-0.9-1.3-0.5-2c0.3-0.5,0.8-0.7,1.3-0.7h2.6V76.4H52.7v21.7c0,0.8-0.7,1.5-1.5,1.5H39.6 c-0.8,0-1.5-0.7-1.5-1.5c0,0,0,0,0,0V42.9h-2.7c-0.8,0-1.5-0.7-1.5-1.5c0-0.5,0.3-1,0.7-1.3l9.7-8.8c0.3-0.4,0.7-0.6,1.2-0.6 c0.5,0,1,0.2,1.3,0.6l9.1,8.8c0.7,0.4,0.9,1.3,0.5,2c-0.3,0.5-0.8,0.7-1.3,0.7h-2.6v18.9h20.7v-21c0-0.8,0.7-1.5,1.5-1.5h11.6 c0.8,0,1.5,0.7,1.5,1.5c0,0,0,0,0,0v55.2h2.7c0.8,0,1.5,0.7,1.5,1.5C92,98.1,91.8,98.6,91.3,98.8z" /></svg>
40
65
  </a>
41
66
  </div>
42
67
  {%- endif %}
@@ -44,7 +69,12 @@
44
69
  {%- if site.social_media.instagram %}
45
70
  <div class="mr-3">
46
71
  <a href="https://www.instagram.com/{{ site.social_media.instagram }}" class="tooltipped tooltipped-se" aria-label="Instagram: {{ site.social_media.instagram }}">
47
- <img src="/assets/brands/instagram.svg" alt="instagram" />
72
+ {%- if site.icon_color %}
73
+ {%- assign color = site.icon_color %}
74
+ <svg width="20" height="20" viewBox="0 0 512 512" fill="{{ color }}" xmlns="http://www.w3.org/2000/svg" ><path d="M256,49.471c67.266,0,75.233.257,101.8,1.469,24.562,1.121,37.9,5.224,46.778,8.674a78.052,78.052,0,0,1,28.966,18.845,78.052,78.052,0,0,1,18.845,28.966c3.45,8.877,7.554,22.216,8.674,46.778,1.212,26.565,1.469,34.532,1.469,101.8s-0.257,75.233-1.469,101.8c-1.121,24.562-5.225,37.9-8.674,46.778a83.427,83.427,0,0,1-47.811,47.811c-8.877,3.45-22.216,7.554-46.778,8.674-26.56,1.212-34.527,1.469-101.8,1.469s-75.237-.257-101.8-1.469c-24.562-1.121-37.9-5.225-46.778-8.674a78.051,78.051,0,0,1-28.966-18.845,78.053,78.053,0,0,1-18.845-28.966c-3.45-8.877-7.554-22.216-8.674-46.778-1.212-26.564-1.469-34.532-1.469-101.8s0.257-75.233,1.469-101.8c1.121-24.562,5.224-37.9,8.674-46.778A78.052,78.052,0,0,1,78.458,78.458a78.053,78.053,0,0,1,28.966-18.845c8.877-3.45,22.216-7.554,46.778-8.674,26.565-1.212,34.532-1.469,101.8-1.469m0-45.391c-68.418,0-77,.29-103.866,1.516-26.815,1.224-45.127,5.482-61.151,11.71a123.488,123.488,0,0,0-44.62,29.057A123.488,123.488,0,0,0,17.3,90.982C11.077,107.007,6.819,125.319,5.6,152.134,4.369,179,4.079,187.582,4.079,256S4.369,333,5.6,359.866c1.224,26.815,5.482,45.127,11.71,61.151a123.489,123.489,0,0,0,29.057,44.62,123.486,123.486,0,0,0,44.62,29.057c16.025,6.228,34.337,10.486,61.151,11.71,26.87,1.226,35.449,1.516,103.866,1.516s77-.29,103.866-1.516c26.815-1.224,45.127-5.482,61.151-11.71a128.817,128.817,0,0,0,73.677-73.677c6.228-16.025,10.486-34.337,11.71-61.151,1.226-26.87,1.516-35.449,1.516-103.866s-0.29-77-1.516-103.866c-1.224-26.815-5.482-45.127-11.71-61.151a123.486,123.486,0,0,0-29.057-44.62A123.487,123.487,0,0,0,421.018,17.3C404.993,11.077,386.681,6.819,359.866,5.6,333,4.369,324.418,4.079,256,4.079h0Z"/><path d="M256,126.635A129.365,129.365,0,1,0,385.365,256,129.365,129.365,0,0,0,256,126.635Zm0,213.338A83.973,83.973,0,1,1,339.974,256,83.974,83.974,0,0,1,256,339.973Z"/><circle cx="390.48" cy="121.52" r="30.23"/></svg>
75
+ {%- else %}
76
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 132.004 132" width="20" height="20"><defs><linearGradient id="b"><stop offset="0" stop-color="#3771c8"/><stop stop-color="#3771c8" offset=".128"/><stop offset="1" stop-color="#60f" stop-opacity="0"/></linearGradient><linearGradient id="a"><stop offset="0" stop-color="#fd5"/><stop offset=".1" stop-color="#fd5"/><stop offset=".5" stop-color="#ff543e"/><stop offset="1" stop-color="#c837ab"/></linearGradient><radialGradient id="c" cx="158.429" cy="578.088" r="65" xlink:href="#a" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0 -1.98198 1.8439 0 -1031.402 454.004)" fx="158.429" fy="578.088"/><radialGradient id="d" cx="147.694" cy="473.455" r="65" xlink:href="#b" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.17394 .86872 -3.5818 .71718 1648.348 -458.493)" fx="147.694" fy="473.455"/></defs><path fill="url(#c)" d="M65.03 0C37.888 0 29.95.028 28.407.156c-5.57.463-9.036 1.34-12.812 3.22-2.91 1.445-5.205 3.12-7.47 5.468C4 13.126 1.5 18.394.595 24.656c-.44 3.04-.568 3.66-.594 19.188-.01 5.176 0 11.988 0 21.125 0 27.12.03 35.05.16 36.59.45 5.42 1.3 8.83 3.1 12.56 3.44 7.14 10.01 12.5 17.75 14.5 2.68.69 5.64 1.07 9.44 1.25 1.61.07 18.02.12 34.44.12 16.42 0 32.84-.02 34.41-.1 4.4-.207 6.955-.55 9.78-1.28 7.79-2.01 14.24-7.29 17.75-14.53 1.765-3.64 2.66-7.18 3.065-12.317.088-1.12.125-18.977.125-36.81 0-17.836-.04-35.66-.128-36.78-.41-5.22-1.305-8.73-3.127-12.44-1.495-3.037-3.155-5.305-5.565-7.624C116.9 4 111.64 1.5 105.372.596 102.335.157 101.73.027 86.19 0H65.03z" transform="translate(1.004 1)"/><path fill="url(#d)" d="M65.03 0C37.888 0 29.95.028 28.407.156c-5.57.463-9.036 1.34-12.812 3.22-2.91 1.445-5.205 3.12-7.47 5.468C4 13.126 1.5 18.394.595 24.656c-.44 3.04-.568 3.66-.594 19.188-.01 5.176 0 11.988 0 21.125 0 27.12.03 35.05.16 36.59.45 5.42 1.3 8.83 3.1 12.56 3.44 7.14 10.01 12.5 17.75 14.5 2.68.69 5.64 1.07 9.44 1.25 1.61.07 18.02.12 34.44.12 16.42 0 32.84-.02 34.41-.1 4.4-.207 6.955-.55 9.78-1.28 7.79-2.01 14.24-7.29 17.75-14.53 1.765-3.64 2.66-7.18 3.065-12.317.088-1.12.125-18.977.125-36.81 0-17.836-.04-35.66-.128-36.78-.41-5.22-1.305-8.73-3.127-12.44-1.495-3.037-3.155-5.305-5.565-7.624C116.9 4 111.64 1.5 105.372.596 102.335.157 101.73.027 86.19 0H65.03z" transform="translate(1.004 1)"/><path fill="#fff" d="M66.004 18c-13.036 0-14.672.057-19.792.29-5.11.234-8.598 1.043-11.65 2.23-3.157 1.226-5.835 2.866-8.503 5.535-2.67 2.668-4.31 5.346-5.54 8.502-1.19 3.053-2 6.542-2.23 11.65C18.06 51.327 18 52.964 18 66s.058 14.667.29 19.787c.235 5.11 1.044 8.598 2.23 11.65 1.227 3.157 2.867 5.835 5.536 8.503 2.667 2.67 5.345 4.314 8.5 5.54 3.054 1.187 6.543 1.996 11.652 2.23 5.12.233 6.755.29 19.79.29 13.037 0 14.668-.057 19.788-.29 5.11-.234 8.602-1.043 11.656-2.23 3.156-1.226 5.83-2.87 8.497-5.54 2.67-2.668 4.31-5.346 5.54-8.502 1.18-3.053 1.99-6.542 2.23-11.65.23-5.12.29-6.752.29-19.788 0-13.036-.06-14.672-.29-19.792-.24-5.11-1.05-8.598-2.23-11.65-1.23-3.157-2.87-5.835-5.54-8.503-2.67-2.67-5.34-4.31-8.5-5.535-3.06-1.187-6.55-1.996-11.66-2.23-5.12-.233-6.75-.29-19.79-.29zm-4.306 8.65c1.278-.002 2.704 0 4.306 0 12.816 0 14.335.046 19.396.276 4.68.214 7.22.996 8.912 1.653 2.24.87 3.837 1.91 5.516 3.59 1.68 1.68 2.72 3.28 3.592 5.52.657 1.69 1.44 4.23 1.653 8.91.23 5.06.28 6.58.28 19.39s-.05 14.33-.28 19.39c-.214 4.68-.996 7.22-1.653 8.91-.87 2.24-1.912 3.835-3.592 5.514-1.68 1.68-3.275 2.72-5.516 3.59-1.69.66-4.232 1.44-8.912 1.654-5.06.23-6.58.28-19.396.28-12.817 0-14.336-.05-19.396-.28-4.68-.216-7.22-.998-8.913-1.655-2.24-.87-3.84-1.91-5.52-3.59-1.68-1.68-2.72-3.276-3.592-5.517-.657-1.69-1.44-4.23-1.653-8.91-.23-5.06-.276-6.58-.276-19.398s.046-14.33.276-19.39c.214-4.68.996-7.22 1.653-8.912.87-2.24 1.912-3.84 3.592-5.52 1.68-1.68 3.28-2.72 5.52-3.592 1.692-.66 4.233-1.44 8.913-1.655 4.428-.2 6.144-.26 15.09-.27zm29.928 7.97c-3.18 0-5.76 2.577-5.76 5.758 0 3.18 2.58 5.76 5.76 5.76 3.18 0 5.76-2.58 5.76-5.76 0-3.18-2.58-5.76-5.76-5.76zm-25.622 6.73c-13.613 0-24.65 11.037-24.65 24.65 0 13.613 11.037 24.645 24.65 24.645C79.617 90.645 90.65 79.613 90.65 66S79.616 41.35 66.003 41.35zm0 8.65c8.836 0 16 7.163 16 16 0 8.836-7.164 16-16 16-8.837 0-16-7.164-16-16 0-8.837 7.163-16 16-16z"/></svg>
77
+ {%- endif %}
48
78
  </a>
49
79
  </div>
50
80
  {%- endif %}
@@ -52,7 +82,98 @@
52
82
  {%- if site.social_media.keybase %}
53
83
  <div class="mr-3">
54
84
  <a href="https://keybase.io/{{ site.social_media.keybase }}" class="tooltipped tooltipped-se" aria-label="Keybase: {{ site.social_media.keybase }}">
55
- <img src="/assets/brands/keybase.svg" alt="keybase" />
85
+ {%- if site.icon_color %}
86
+ {%- assign color = site.icon_color %}
87
+ <svg width="20" height="20" viewBox="0 0 71 76.3" fill="{{ color }}" version="1.1" x="0px" y="0px" xmlns="http://www.w3.org/2000/svg" xml:space="preserve"><g transform="translate(-241.11756,-377.8123)"><path class="st0" d="M247.8,451.8c-0.6-1.3-1.4-3.1-1.8-4l-0.6-1.7l-2,2.2l-2,2.2 l-0.2-4.2c-0.3-6,0.2-12.2,1.2-16.6c2.3-9.8,9.5-18.7,18.8-23.4l2.1-1l-0.5-1.5c-0.3-0.8-0.6-2.5-0.7-3.6l-0.2-2.1l-2.1-0.2 c-3.2-0.3-4.9-1.2-6-3.5c-0.6-1.2-0.6-1.4-0.4-4.6c0.2-4.2,0.5-5.1,1.8-6.5c1.6-1.8,2.7-2.1,6.7-1.9c2.9,0.2,3.5,0.3,4.8,0.9 c0.8,0.4,1.5,0.8,1.6,0.8c0.1,0,1-1.1,2.1-2.6l1.9-2.7l1.2,0.7c0.7,0.4,1.5,0.9,1.9,1.1l0.7,0.4l-0.6,1.5c-0.3,0.8-0.7,2.2-0.8,2.9 l-0.2,1.4l1.7,0.2c6.1,0.6,10.7,4.3,12.4,9.9c0.5,1.8,0.5,5.3,0,7c-0.5,1.6-0.5,1.7-0.1,1.7c0.7,0,5.4,2.3,7.3,3.5 c3.7,2.4,8,6.6,10.4,10.2c4.5,6.7,6.4,14,5.6,22c-0.4,4.8-1.3,8.6-2.9,12.3l-0.6,1.4l-2.5,0l-2.5,0l1.2-2.4 c1.3-2.6,2.3-6.2,2.8-9.4c0.3-2.2,0.4-8.2,0.1-9.3l-0.2-0.7l-1.3,1.4c-3.2,3.5-7.9,4.5-14.2,2.8c-5.4-1.4-7.6-1.7-12.7-1.7 c-3.9,0-5.2,0.1-7.3,0.6c-5.8,1.3-9.9,3.2-15.6,7.3c-2.1,1.5-3.8,2.7-3.9,2.7c-0.1,0,0.2-1,0.6-2.3c0.4-1.3,1.1-3.4,1.5-4.8 l0.8-2.5l-0.9,0.9c-0.5,0.5-1.9,1.9-3.1,3.2l-2.1,2.3l0.5,1.9c0.6,2.5,2,5.6,3.5,7.9c0.6,1,1.1,1.8,1.1,1.9s-1.2,0.1-2.6,0.1h-2.6 L247.8,451.8L247.8,451.8z M256.6,427.6c4.8-5.1,8.7-9.2,8.8-9.2c0.1,0.1-0.4,1.6-0.9,3.3c-3.3,10.4-4,12.4-3.9,12.5 c0,0,1.2-0.4,2.5-0.9c8.5-3.7,18.4-4.2,28.9-1.4c4.7,1.2,6.5,1.2,8.8,0c1.3-0.7,1.8-1.1,2.4-2.1c1.1-1.7,1.2-4.1,0.5-6.3 c-1.7-4.8-8.3-11-14.5-13.7c-3.2-1.4-3.4-1.4-4.1-0.7l-0.6,0.6l2.6,3.2c1.4,1.7,2.9,3.6,3.1,4.1c0.6,1.2,0.7,3.1,0.1,4.3 c-0.8,1.7-3.2,2.9-5.1,2.5c-0.8-0.2-1.1-0.1-1.9,0.5c-2.2,1.6-4.6,1.2-6.6-1.2c-1.6-1.8-2-2.7-2.1-4.5c0-0.9-0.3-2-0.5-2.4 c-0.3-0.6-0.4-1.3-0.4-2.2l0.1-1.4l-1.3-0.3c-1.8-0.5-3.9-1.5-5.1-2.4c-0.6-0.4-1.1-0.8-1.3-0.8s-1.5,0.6-2.9,1.3 c-9.7,5-16,14.3-17,24.8c-0.1,1-0.2,2.3-0.3,2.8l-0.1,0.9l1.1-1.1C247.4,437.3,251.8,432.7,256.6,427.6L256.6,427.6z M282.5,420.2 c0.9-0.7,1.7-1.3,1.9-1.3c0.1,0,0.4,0.3,0.7,0.7c0.5,0.8,1.4,0.8,1.8,0.1c0.3-0.5,0.3-0.6-5.6-7.8c-3.5-4.3-4.2-5-4.7-5 c-1.2,0.1-0.9,1,1,3.3l1.8,2.2l-1,0.8c-1.1,1-1.2,1.2-0.5,1.8c0.5,0.5,0.6,0.4,1.6-0.3l1.1-0.7l0.7,0.6c0.4,0.3,0.6,0.8,0.6,0.9 c0,0.2-0.8,0.9-1.7,1.7c-0.9,0.7-1.6,1.5-1.6,1.7c0,0.3,0.5,1.1,1.4,2.2C280.3,421.7,280.8,421.5,282.5,420.2L282.5,420.2z M272.2,406c0.6-1.8,2.6-3.2,4.6-3.2c1.1,0,2.7,0.9,3.8,2.1l1,1.2l0.9-1.1c2.5-2.8,2.8-6.7,0.8-10.1c-1.5-2.5-4.3-4-8.2-4.4 c-2.1-0.2-2.6-0.4-3.7-1.5l-0.8-0.8l-0.4,0.6c-0.8,1.2-2.5,5.1-3,6.6c-0.7,2.3-0.4,5.9,0.5,7.7c0.9,1.7,3.3,4,4,3.7 C271.8,406.9,272,406.5,272.2,406L272.2,406z M263.3,392.4c0.2-0.5,0.7-1.8,1.2-2.8c0.5-1,0.9-2,0.9-2.3c0-0.9-1-1.3-3.7-1.5 c-2.4-0.2-2.6-0.1-3.1,0.4c-0.4,0.4-0.6,0.9-0.6,1.6c0,0.6-0.1,1.7-0.2,2.6c-0.2,2.1,0.1,2.5,2.2,2.8 C263.1,393.4,263,393.4,263.3,392.4z M260.2,390c0-1.7,0.2-1.9,1.6-1.9h1.3v1.4v1.4h-1.4h-1.4V390z M266.5,448.3 c-0.6-0.6-0.8-1-0.8-2c0-1.9,1.1-3,2.9-3c1.7,0,2.9,1.2,2.9,2.9c0,1.8-1.1,2.8-3,2.9C267.5,449.1,267.1,448.9,266.5,448.3 L266.5,448.3z M285.8,448.6c-2.3-1.8-1.1-5.3,1.8-5.3c1.8,0,2.8,1.1,2.9,3c0,1.1-0.1,1.4-0.8,2s-1,0.8-2,0.8 C286.8,449.1,286.2,448.9,285.8,448.6L285.8,448.6z"/></g></svg>
88
+ {%- else %}
89
+ {%- assign color = "#959da5" %}
90
+ <svg
91
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
92
+ xmlns:cc="http://creativecommons.org/ns#"
93
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
94
+ xmlns:svg="http://www.w3.org/2000/svg"
95
+ xmlns="http://www.w3.org/2000/svg"
96
+ viewBox="0 0 223.33333 204.89906"
97
+ height="20"
98
+ xml:space="preserve"
99
+ id="svg4504"
100
+ version="1.1"><defs
101
+ id="defs4508"><clipPath
102
+ id="clipPath4520"
103
+ clipPathUnits="userSpaceOnUse"><path
104
+ id="path4518"
105
+ d="M 0,600 H 600 V 0 H 0 Z" /></clipPath></defs><g
106
+ transform="matrix(1.3333333,0,0,-1.3333333,-288.33333,502.44932)"
107
+ id="g4512"><g
108
+ id="g4514"><g
109
+ clip-path="url(#clipPath4520)"
110
+ id="g4516"><g
111
+ transform="translate(300,362.4287)"
112
+ id="g4522"><path
113
+ id="path4524"
114
+ style="fill:#33a0ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
115
+ d="m 0,0 c -44.183,0 -80,-35.817 -80,-80 0,-15.254 4.271,-29.509 11.679,-41.639 l 20.9,22.191 105.783,-0.661 -0.766,-35.407 C 71.467,-121.129 80,-101.562 80,-80 80,-35.817 44.183,0 0,0" /></g><g
116
+ transform="translate(263.8363,339.6274)"
117
+ id="g4526"><path
118
+ id="path4528"
119
+ style="fill:#3dcc8e;fill-opacity:1;fill-rule:nonzero;stroke:none"
120
+ d="m 0,0 c -3.899,0.239 -6.887,3.608 -6.66,7.511 l 0.529,8.547 c 0.232,3.739 3.35,6.669 7.097,6.669 0.14,0 0.281,-0.004 0.422,-0.013 L 9.93,22.185 c 1.89,-0.115 3.627,-0.962 4.885,-2.386 1.26,-1.424 1.888,-3.256 1.767,-5.156 L 16.058,6.129 C 16.027,5.637 15.928,5.247 15.867,5.034 L 15.563,3.547 9.942,-0.615 Z" /></g><g
121
+ transform="translate(264.8025,366.6468)"
122
+ id="g4530"><path
123
+ id="path4532"
124
+ style="fill:#282828;fill-opacity:1;fill-rule:nonzero;stroke:none"
125
+ d="m 0,0 c -6.01,0 -11.009,-4.698 -11.381,-10.696 l -0.529,-8.532 -10e-4,-0.016 -0.001,-0.015 c -0.364,-6.259 4.43,-11.662 10.686,-12.045 l 8.375,-0.518 3.123,-0.193 2.515,1.862 3.042,2.251 2.643,1.957 0.607,2.967 c 0.12,0.455 0.25,1.068 0.297,1.818 l 0.524,8.522 c 0.192,3.045 -0.817,5.98 -2.839,8.266 -2.013,2.278 -4.8,3.638 -7.843,3.823 L 0.7,-0.021 H 0.688 L 0.675,-0.02 C 0.451,-0.007 0.224,0 0,0 m 6.378,-18.621 0.314,5.075 -5.076,0.314 -0.315,-5.076 5.077,-0.313 M 0,-8.585 c 0.056,0 0.113,-0.002 0.17,-0.005 l 8.528,-0.529 c 0.747,-0.045 1.436,-0.38 1.933,-0.943 0.5,-0.565 0.749,-1.29 0.701,-2.041 l -0.525,-8.524 c -0.008,-0.132 -0.061,-0.248 -0.086,-0.374 l -3.042,-2.252 -8.38,0.518 c -1.546,0.095 -2.73,1.43 -2.64,2.977 l 0.529,8.531 c 0.092,1.489 1.327,2.642 2.812,2.642" /></g><g
126
+ transform="translate(300,320.9623)"
127
+ id="g4534"><path
128
+ id="path4536"
129
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
130
+ d="m 0,0 c -33.402,0 -60.48,-27.078 -60.48,-60.48 0,-12.421 3.746,-23.965 10.167,-33.569 H 52.742 c 5.424,9.907 7.738,21.637 7.738,33.569 C 60.48,-29.566 33.402,0 0,0" /></g><g
131
+ transform="translate(299.9999,325.255)"
132
+ id="g4538"><path
133
+ id="path4540"
134
+ style="fill:#282827;fill-opacity:1;fill-rule:nonzero;stroke:none"
135
+ d="m 0,0 c -35.716,0 -64.773,-29.057 -64.773,-64.773 0,-12.28 3.436,-23.774 9.396,-33.569 h 10.347 c -7.005,9.372 -11.157,20.995 -11.157,33.569 0,30.982 25.205,56.188 56.187,56.188 14.716,0 28.811,-6.161 39.688,-17.348 10.486,-10.783 16.5,-24.94 16.5,-38.84 0,-9.517 -1.572,-22.45 -8.405,-33.569 h 9.799 c 4.729,9.519 7.191,20.9 7.191,33.569 0,16.116 -6.899,32.454 -18.929,44.826 C 33.336,-7.084 17.055,0 0,0" /></g><g
136
+ transform="translate(287.7891,242.9254)"
137
+ id="g4542"><path
138
+ id="path4544"
139
+ style="fill:#282827;fill-opacity:1;fill-rule:nonzero;stroke:none"
140
+ d="m 0,0 c 0,-3.207 -2.599,-5.806 -5.806,-5.806 -3.207,0 -5.806,2.599 -5.806,5.806 0,3.207 2.599,5.806 5.806,5.806 C -2.599,5.806 0,3.207 0,0" /></g><g
141
+ transform="translate(323.8228,242.9254)"
142
+ id="g4546"><path
143
+ id="path4548"
144
+ style="fill:#282827;fill-opacity:1;fill-rule:nonzero;stroke:none"
145
+ d="m 0,0 c 0,-3.207 -2.599,-5.806 -5.806,-5.806 -3.207,0 -5.806,2.599 -5.806,5.806 0,3.207 2.599,5.806 5.806,5.806 C -2.599,5.806 0,3.207 0,0" /></g><g
146
+ transform="translate(234.0117,245.2287)"
147
+ id="g4550"><path
148
+ id="path4552"
149
+ style="fill:#ff6f21;fill-opacity:1;fill-rule:nonzero;stroke:none"
150
+ d="M 0,0 32.228,34.18 24.471,9.861 c 25.161,18.31 51.575,15.415 70.174,9.953 19.741,-5.796 33.562,11.639 20.032,30.238 C 108.248,58.891 99.429,66.23 89.412,70.681 63.139,82.352 36.724,75.547 18.905,57.547 0.029,38.479 0,17.33 0,0" /></g><g
151
+ transform="translate(296.9716,317.3886)"
152
+ id="g4554"><path
153
+ id="path4556"
154
+ style="fill:#282827;fill-opacity:1;fill-rule:nonzero;stroke:none"
155
+ d="m 0,0 c -3.741,0 -7.456,-0.373 -11.107,-1.124 -11.135,-2.29 -21.473,-7.999 -29.897,-16.509 -13.993,-14.135 -16.901,-29.306 -17.505,-43.549 l 37.603,39.881 -9.955,-31.208 c 18.708,9.781 40.099,11.228 63.755,4.282 7.528,-2.21 14.351,-0.535 17.808,4.371 3.551,5.041 2.633,12.227 -2.456,19.223 -6.081,8.36 -14.44,15.189 -23.537,19.231 C 16.641,-1.818 8.259,0 0,0 m -67.252,-82.97 v 10.81 c 0,17.917 0,40.215 20.146,60.567 9.62,9.717 21.47,16.245 34.269,18.878 13.474,2.772 27.662,1.098 41.032,-4.841 10.453,-4.644 20.04,-12.467 26.994,-22.026 7.243,-9.958 8.213,-21.154 2.531,-29.218 -5.555,-7.885 -16.247,-10.892 -27.245,-7.664 -25.364,7.448 -47.718,4.317 -66.438,-9.306 l -10.6,-7.713 6.005,18.825 z" /></g><g
156
+ transform="translate(315.4395,324.1835)"
157
+ id="g4558"><path
158
+ id="path4560"
159
+ style="fill:#ff6f21;fill-opacity:1;fill-rule:nonzero;stroke:none"
160
+ d="m 0,0 c -3.821,-9.956 -14.901,-15.515 -25.167,-12.625 -11.566,3.257 -17.673,12.552 -16.207,24.342 1.459,11.725 9.382,22.005 18.515,34.677 -7.502,-15.969 -1.129,-17.465 0.887,-17.385 1.992,0.079 4.9,-0.261 9.039,-1.634 C -1.656,23.632 4.305,11.218 0,0" /></g><g
161
+ transform="translate(285.8294,353.465)"
162
+ id="g4562"><path
163
+ id="path4564"
164
+ style="fill:#282827;fill-opacity:1;fill-rule:nonzero;stroke:none"
165
+ d="m 0,0 c -3.962,-6.212 -6.744,-11.986 -7.504,-18.094 -1.203,-9.673 3.698,-17.03 13.111,-19.68 8.172,-2.301 16.954,2.105 19.996,10.03 1.649,4.298 1.477,8.947 -0.484,13.091 -1.963,4.148 -5.441,7.228 -9.794,8.672 -3.82,1.268 -6.198,1.469 -7.516,1.419 C 4.85,-4.678 2.119,-3.3 0.509,-0.872 0.323,-0.592 0.153,-0.302 0,0 m 9.977,-46.963 c -2.226,0 -4.475,0.299 -6.697,0.925 -6.666,1.877 -11.993,5.587 -15.404,10.729 -3.401,5.126 -4.749,11.445 -3.9,18.275 1.5,12.057 8.931,22.329 17.535,34.223 0.58,0.802 1.166,1.612 1.758,2.433 l 7.367,-4.335 C 7,7.546 7.417,4.68 7.608,4.026 c 2.925,0.089 6.431,-0.534 10.421,-1.858 6.601,-2.191 11.875,-6.86 14.85,-13.149 2.974,-6.284 3.236,-13.33 0.739,-19.839 C 29.83,-40.689 20.172,-46.963 9.977,-46.963" /></g><g
166
+ transform="translate(304.5916,286.1613)"
167
+ id="g4566"><path
168
+ id="path4568"
169
+ style="fill:#3dcc8e;fill-opacity:1;fill-rule:nonzero;stroke:none"
170
+ d="m 0,0 c -1.503,0 -2.911,0.668 -3.861,1.832 l -2.888,3.537 c -1.674,2.05 -1.434,5.049 0.501,6.811 -0.625,0.306 -1.184,0.747 -1.638,1.303 l -0.659,0.807 c -1.734,2.123 -1.417,5.26 0.705,6.993 l 0.415,0.339 -4.23,5.192 c -1.881,2.304 -1.536,5.713 0.77,7.597 0.967,0.788 2.179,1.219 3.417,1.219 1.626,0 3.151,-0.722 4.182,-1.982 L 14.757,11.441 C 16.635,9.14 16.29,5.731 13.984,3.847 13.348,3.327 12.586,2.953 11.784,2.768 11.386,2.676 10.976,2.63 10.567,2.63 v 0 C 9.161,2.63 7.832,3.169 6.831,4.128 L 3.15,1.123 C 2.263,0.399 1.144,0 0,0" /></g><g
171
+ transform="translate(304.0229,322.0345)"
172
+ id="g4570"><path
173
+ id="path4572"
174
+ style="fill:#282828;fill-opacity:1;fill-rule:nonzero;stroke:none"
175
+ d="m 0,0 c -1.701,2.078 -4.216,3.269 -6.899,3.269 -2.044,0 -4.044,-0.712 -5.631,-2.004 -3.814,-3.116 -4.382,-8.741 -1.275,-12.547 l 2.35,-2.885 c -1.726,-2.968 -1.539,-6.824 0.758,-9.637 l 0.442,-0.542 c -1.039,-2.741 -0.63,-5.95 1.354,-8.379 l 2.888,-3.538 c 1.619,-1.984 4.018,-3.122 6.581,-3.122 1.952,0 3.86,0.679 5.372,1.914 l 1.73,1.412 c 1.082,-0.455 2.257,-0.697 3.466,-0.697 0.674,0 1.349,0.077 2.006,0.229 1.324,0.305 2.58,0.921 3.633,1.781 3.805,3.109 4.373,8.734 1.267,12.54 L 0.017,-0.021 Z m -6.899,-3.755 c 0.547,0 1.09,-0.238 1.464,-0.696 L 12.6,-26.647 c 0.66,-0.809 0.539,-1.999 -0.269,-2.659 -0.233,-0.19 -0.496,-0.314 -0.769,-0.377 -0.14,-0.033 -0.283,-0.049 -0.426,-0.049 -0.548,0 -1.091,0.237 -1.465,0.695 l -1.796,2.213 -6.377,-5.205 c -0.273,-0.224 -0.602,-0.332 -0.93,-0.332 -0.426,0 -0.849,0.185 -1.14,0.541 l -2.888,3.537 c -0.508,0.622 -0.415,1.538 0.207,2.046 l 6.408,5.231 -2.618,3.228 -3.17,-2.59 c -0.26,-0.211 -0.572,-0.314 -0.882,-0.314 -0.404,0 -0.805,0.175 -1.081,0.512 l -0.66,0.809 c -0.509,0.623 -0.417,1.541 0.206,2.05 l 3.133,2.558 -6.447,7.913 c -0.66,0.808 -0.539,1.998 0.269,2.658 0.353,0.287 0.776,0.427 1.196,0.427" /></g></g></g></g></svg>
176
+ {%- endif %}
56
177
  </a>
57
178
  </div>
58
179
  {%- endif %}
@@ -60,7 +181,12 @@
60
181
  {%- if site.social_media.linkedin %}
61
182
  <div class="mr-3">
62
183
  <a href="https://www.linkedin.com/in/{{ site.social_media.linkedin }}" class="tooltipped tooltipped-se" aria-label="LinkedIn: {{ site.social_media.linkedin }}">
63
- <img src="/assets/brands/linkedin.svg" alt="linkedin" />
184
+ {%- if site.icon_color %}
185
+ {%- assign color = site.icon_color %}
186
+ {%- else %}
187
+ {%- assign color = "#0072b1" %}
188
+ {%- endif %}
189
+ <svg height="20" viewBox="0 0 19 18" fill="{{ color }}" xmlns="http://www.w3.org/2000/svg"><path d="M3.94 2A2 2 0 1 1 2 0a2 2 0 0 1 1.94 2zM4 5.48H0V18h4zm6.32 0H6.34V18h3.94v-6.57c0-3.66 4.77-4 4.77 0V18H19v-7.93c0-6.17-7.06-5.94-8.72-2.91z"/></svg>
64
190
  </a>
65
191
  </div>
66
192
  {%- endif %}
@@ -68,7 +194,12 @@
68
194
  {%- if site.social_media.mastodon %}
69
195
  <div class="mr-3">
70
196
  <a href="https://mstdn.io/{{ site.social_media.mastodon }}" class="tooltipped tooltipped-se" aria-label="Mastodon: {{ site.social_media.mastodon }}">
71
- <img src="/assets/brands/mastodon.svg" alt="mastodon" />
197
+ {%- if site.icon_color %}
198
+ {%- assign color = site.icon_color %}
199
+ {%- else %}
200
+ {%- assign color = "#6364FF" %}
201
+ {%- endif %}
202
+ <svg width="20" height="20" viewBox="0 0 216.4144 232.00976" fill="{{ color }}" xmlns="http://www.w3.org/2000/svg"><path d="M211.80734 139.0875c-3.18125 16.36625-28.4925 34.2775-57.5625 37.74875-15.15875 1.80875-30.08375 3.47125-45.99875 2.74125-26.0275-1.1925-46.565-6.2125-46.565-6.2125 0 2.53375.15625 4.94625.46875 7.2025 3.38375 25.68625 25.47 27.225 46.39125 27.9425 21.11625.7225 39.91875-5.20625 39.91875-5.20625l.8675 19.09s-14.77 7.93125-41.08125 9.39c-14.50875.7975-32.52375-.365-53.50625-5.91875C9.23234 213.82 1.40609 165.31125.20859 116.09125c-.365-14.61375-.14-28.39375-.14-39.91875 0-50.33 32.97625-65.0825 32.97625-65.0825C49.67234 3.45375 78.20359.2425 107.86484 0h.72875c29.66125.2425 58.21125 3.45375 74.8375 11.09 0 0 32.975 14.7525 32.975 65.0825 0 0 .41375 37.13375-4.59875 62.915"/><path fill="#fff" d="M177.50984 80.077v60.94125h-24.14375v-59.15c0-12.46875-5.24625-18.7975-15.74-18.7975-11.6025 0-17.4175 7.5075-17.4175 22.3525v32.37625H96.20734V85.42325c0-14.845-5.81625-22.3525-17.41875-22.3525-10.49375 0-15.74 6.32875-15.74 18.7975v59.15H38.90484V80.077c0-12.455 3.17125-22.3525 9.54125-29.675 6.56875-7.3225 15.17125-11.07625 25.85-11.07625 12.355 0 21.71125 4.74875 27.8975 14.2475l6.01375 10.08125 6.015-10.08125c6.185-9.49875 15.54125-14.2475 27.8975-14.2475 10.6775 0 19.28 3.75375 25.85 11.07625 6.36875 7.3225 9.54 17.22 9.54 29.675"/></svg>
72
203
  </a>
73
204
  </div>
74
205
  {%- endif %}
@@ -76,7 +207,12 @@
76
207
  {%- if site.social_media.medium %}
77
208
  <div class="mr-3">
78
209
  <a href="https://medium.com/@{{ site.social_media.medium }}" class="tooltipped tooltipped-se" aria-label="Medium: {{ site.social_media.medium }}">
79
- <img src="/assets/brands/medium.svg" alt="medium" />
210
+ {%- if site.icon_color %}
211
+ {%- assign color = site.icon_color %}
212
+ {%- else %}
213
+ {%- assign color = "#959da5" %}
214
+ {%- endif %}
215
+ <svg width="20" height="20" viewBox="32 25 125 125" fill="{{ color }}" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M46.5340803,65.2157554 C46.6968378,63.6076572 46.0836,62.018231 44.8828198,60.93592 L32.6512605,46.2010582 L32.6512605,44 L70.6302521,44 L99.9859944,108.380952 L125.794585,44 L162,44 L162,46.2010582 L151.542017,56.2281011 C150.640424,56.9153477 150.193188,58.0448862 150.380019,59.1628454 L150.380019,132.837155 C150.193188,133.955114 150.640424,135.084652 151.542017,135.771899 L161.755369,145.798942 L161.755369,148 L110.38282,148 L110.38282,145.798942 L120.963119,135.527337 C122.002801,134.487948 122.002801,134.182246 122.002801,132.592593 L122.002801,73.0417402 L92.585901,147.755438 L88.6106443,147.755438 L54.3622782,73.0417402 L54.3622782,123.115814 C54.0767278,125.221069 54.7759199,127.3406 56.2581699,128.863022 L70.0186741,145.55438 L70.0186741,147.755438 L31,147.755438 L31,145.55438 L44.7605042,128.863022 C46.2319621,127.338076 46.8903838,125.204485 46.5340803,123.115814 L46.5340803,65.2157554 Z" id="Shape"></path></svg>
80
216
  </a>
81
217
  </div>
82
218
  {%- endif %}
@@ -84,7 +220,13 @@
84
220
  {%- if site.social_media.stackoverflow %}
85
221
  <div class="mr-3">
86
222
  <a href="https://stackoverflow.com/u/{{ site.social_media.stackoverflow }}" class="tooltipped tooltipped-se" aria-label="Stack Overflow: {{ site.social_media.stackoverflow }}">
87
- <img src="/assets/brands/stackoverflow.svg" alt="stackoverflow" />
223
+ {%- if site.icon_color %}
224
+ {%- assign color = site.icon_color %}
225
+ <svg height="24" viewBox="0 0 120 120" fill="{{ color }}" xmlns="http://www.w3.org/2000/svg" ><path class="st0" d="M84.4 93.8V70.6h7.7v30.9H22.6V70.6h7.7v23.2z"/><path class="st1" d="M38.8 68.4l37.8 7.9 1.6-7.6-37.8-7.9-1.6 7.6zm5-18l35 16.3 3.2-7-35-16.4-3.2 7.1zm9.7-17.2l29.7 24.7 4.9-5.9-29.7-24.7-4.9 5.9zm19.2-18.3l-6.2 4.6 23 31 6.2-4.6-23-31zM38 86h38.6v-7.7H38V86z"/></svg>
226
+ {%- else %}
227
+ {%- assign color = "#959da5" %}
228
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="20" height="20"><path d="M28.16 32H2.475V20.58H5.32v8.575h19.956V20.58h2.884z" fill="#bcbbbb"/><path d="M8.477 19.8l13.993 2.923.585-2.806-13.993-2.923zm1.832-6.704l12.94 6.04 1.208-2.572-12.94-6.08zm3.586-6.353l10.99 9.12 1.832-2.183-10.99-9.12zM20.99 0l-2.3 1.715 8.536 11.46 2.3-1.715zM8.166 26.27H22.43v-2.845H8.166v2.845z" fill="#f48024"/></svg>
229
+ {%- endif %}
88
230
  </a>
89
231
  </div>
90
232
  {%- endif %}
@@ -92,7 +234,12 @@
92
234
  {%- if site.social_media.telegram %}
93
235
  <div class="mr-3">
94
236
  <a href="https://t.me/{{ site.social_media.telegram }}" class="tooltipped tooltipped-se" aria-label="Telegram: {{ site.social_media.telegram }}">
95
- <img src="/assets/brands/telegram.svg" alt="telegram" />
237
+ {%- if site.icon_color %}
238
+ {%- assign color = site.icon_color %}
239
+ {%- else %}
240
+ {%- assign color = "#0088CC" %}
241
+ {%- endif %}
242
+ <svg height="20" viewBox="0 0 20 17" fill="{{ color }}" xmlns="http://www.w3.org/2000/svg"><path d="M19.9434 1.52996L16.9243 15.7574C16.7018 16.7662 16.1009 17.011 15.2627 16.5362L10.6637 13.1463L8.44574 15.2826C8.20095 15.5274 7.99325 15.7351 7.51851 15.7351L7.84489 11.0545L16.368 3.35475C16.7389 3.02836 16.2864 2.84292 15.7968 3.1693L5.26349 9.80084L0.723777 8.38403C-0.262794 8.07249 -0.285048 7.39746 0.931477 6.92272L18.6675 0.0834836C19.4909 -0.21323 20.2104 0.283765 19.9434 1.52996Z"/></svg>
96
243
  </a>
97
244
  </div>
98
245
  {%- endif %}
@@ -100,7 +247,37 @@
100
247
  {%- if site.social_media.threads %}
101
248
  <div class="mr-3">
102
249
  <a href="https://www.threads.net/@{{ site.social_media.threads }}" class="tooltipped tooltipped-se" aria-label="Threads: {{ site.social_media.threads }}">
103
- <img src="/assets/brands/threads.svg" alt="threads" />
250
+ {%- if site.icon_color %}
251
+ {%- assign color = site.icon_color %}
252
+ <svg height="20" viewBox="0 0 192 192" fill="{{ color }}" xmlns="http://www.w3.org/2000/svg"><path d="M141.537 88.9883C140.71 88.5919 139.87 88.2104 139.019 87.8451C137.537 60.5382 122.616 44.905 97.5619 44.745C97.4484 44.7443 97.3355 44.7443 97.222 44.7443C82.2364 44.7443 69.7731 51.1409 62.102 62.7807L75.881 72.2328C81.6116 63.5383 90.6052 61.6848 97.2286 61.6848C97.3051 61.6848 97.3819 61.6848 97.4576 61.6855C105.707 61.7381 111.932 64.1366 115.961 68.814C118.893 72.2193 120.854 76.925 121.825 82.8638C114.511 81.6207 106.601 81.2385 98.145 81.7233C74.3247 83.0954 59.0111 96.9879 60.0396 116.292C60.5615 126.084 65.4397 134.508 73.775 140.011C80.8224 144.663 89.899 146.938 99.3323 146.423C111.79 145.74 121.563 140.987 128.381 132.296C133.559 125.696 136.834 117.143 138.28 106.366C144.217 109.949 148.617 114.664 151.047 120.332C155.179 129.967 155.42 145.8 142.501 158.708C131.182 170.016 117.576 174.908 97.0135 175.059C74.2042 174.89 56.9538 167.575 45.7381 153.317C35.2355 139.966 29.8077 120.682 29.6052 96C29.8077 71.3178 35.2355 52.0336 45.7381 38.6827C56.9538 24.4249 74.2039 17.11 97.0132 16.9405C119.988 17.1113 137.539 24.4614 149.184 38.788C154.894 45.8136 159.199 54.6488 162.037 64.9503L178.184 60.6422C174.744 47.9622 169.331 37.0357 161.965 27.974C147.036 9.60668 125.202 0.195148 97.0695 0H96.9569C68.8816 0.19447 47.2921 9.6418 32.7883 28.0793C19.8819 44.4864 13.2244 67.3157 13.0007 95.9325L13 96L13.0007 96.0675C13.2244 124.684 19.8819 147.514 32.7883 163.921C47.2921 182.358 68.8816 191.806 96.9569 192H97.0695C122.03 191.827 139.624 185.292 154.118 170.811C173.081 151.866 172.51 128.119 166.26 113.541C161.776 103.087 153.227 94.5962 141.537 88.9883ZM98.4405 129.507C88.0005 130.095 77.1544 125.409 76.6196 115.372C76.2232 107.93 81.9158 99.626 99.0812 98.6368C101.047 98.5234 102.976 98.468 104.871 98.468C111.106 98.468 116.939 99.0737 122.242 100.233C120.264 124.935 108.662 128.946 98.4405 129.507Z"/></svg>
253
+ {%- else %}
254
+ {%- assign color = "#959da5" %}
255
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 153.14 178" height="20"><defs><style>.cls-1{fill:url(#linear-gradient);}</style><linearGradient id="linear-gradient" x1="41.76" y1="-17.79" x2="110.1" y2="180.87" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#515bd4"/><stop offset="0.25" stop-color="#8134af"/><stop offset="0.5" stop-color="#dd2a7b"/><stop offset="0.75" stop-color="#f58529"/><stop offset="1" stop-color="#feda77"/></linearGradient></defs><title>Threads-insta-Logo</title><path class="cls-1" d="M119.16,82.5c-.76-.37-1.54-.72-2.33-1.06-1.37-25.32-15.21-39.81-38.43-40h-.32c-13.89,0-25.45,5.93-32.56,16.72L58.3,67c5.31-8.06,13.65-9.78,19.79-9.78h.21c7.65.05,13.42,2.27,17.15,6.61,2.72,3.15,4.54,7.52,5.44,13a97.8,97.8,0,0,0-22-1.06C56.85,77,42.66,89.92,43.61,107.81a27.6,27.6,0,0,0,12.73,22A39.4,39.4,0,0,0,80,135.75c11.55-.64,20.61-5,26.93-13.1,4.8-6.12,7.83-14.05,9.17-24a28.29,28.29,0,0,1,11.84,13c3.83,8.93,4.06,23.61-7.92,35.58-10.49,10.48-23.11,15-42.17,15.15-21.15-.15-37.14-6.93-47.54-20.15C20.61,129.76,15.58,111.88,15.4,89c.18-22.88,5.21-40.76,15-53.14,10.4-13.22,26.39-20,47.54-20.15,21.3.15,37.57,7,48.36,20.25,5.3,6.51,9.29,14.7,11.92,24.25l15-4a81.07,81.07,0,0,0-15-30.29C124.26,8.91,104,.18,77.94,0h-.1c-26,.18-46.05,8.94-59.49,26C6.38,41.24.21,62.41,0,88.94v.12c.21,26.53,6.38,47.7,18.35,62.91,13.44,17.09,33.46,25.85,59.49,26h.1c23.14-.16,39.45-6.22,52.89-19.64,17.58-17.57,17-39.58,11.25-53.1C137.93,95.57,130,87.7,119.16,82.5M79.21,120.06c-9.68.55-19.73-3.8-20.23-13.1-.37-6.9,4.91-14.6,20.83-15.52,1.82-.1,3.61-.15,5.36-.15a76,76,0,0,1,16.11,1.63c-1.84,22.91-12.59,26.62-22.07,27.14"/></svg>
256
+ {%- endif %}
257
+ </a>
258
+ </div>
259
+ {%- endif %}
260
+
261
+ {%- if site.social_media.tiktok %}
262
+ <div class="mr-3">
263
+ <a href="https://www.tiktok.com//@{{ site.social_media.threads }}" class="tooltipped tooltipped-se" aria-label="Tiktok: {{ site.social_media.tiktok }}">
264
+ {%- if site.icon_color %}
265
+ {%- assign color = site.icon_color %}
266
+ <svg width="20" height="20" viewBox="0 0 512 512" fill="{{ color }}" xmlns="http://www.w3.org/2000/svg"><path d="M412.19,118.66a109.27,109.27,0,0,1-9.45-5.5,132.87,132.87,0,0,1-24.27-20.62c-18.1-20.71-24.86-41.72-27.35-56.43h.1C349.14,23.9,350,16,350.13,16H267.69V334.78c0,4.28,0,8.51-.18,12.69,0,.52-.05,1-.08,1.56,0,.23,0,.47-.05.71,0,.06,0,.12,0,.18a70,70,0,0,1-35.22,55.56,68.8,68.8,0,0,1-34.11,9c-38.41,0-69.54-31.32-69.54-70s31.13-70,69.54-70a68.9,68.9,0,0,1,21.41,3.39l.1-83.94a153.14,153.14,0,0,0-118,34.52,161.79,161.79,0,0,0-35.3,43.53c-3.48,6-16.61,30.11-18.2,69.24-1,22.21,5.67,45.22,8.85,54.73v.2c2,5.6,9.75,24.71,22.38,40.82A167.53,167.53,0,0,0,115,470.66v-.2l.2.2C155.11,497.78,199.36,496,199.36,496c7.66-.31,33.32,0,62.46-13.81,32.32-15.31,50.72-38.12,50.72-38.12a158.46,158.46,0,0,0,27.64-45.93c7.46-19.61,9.95-43.13,9.95-52.53V176.49c1,.6,14.32,9.41,14.32,9.41s19.19,12.3,49.13,20.31c21.48,5.7,50.42,6.9,50.42,6.9V131.27C453.86,132.37,433.27,129.17,412.19,118.66Z"/></svg>
267
+ {%- else %}
268
+ {%- assign color = "#959da5" %}
269
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="20" height="20" viewBox="0 0 256 256" xml:space="preserve">
270
+ <defs>
271
+ </defs>
272
+ <g style="stroke: none; stroke-width: 0; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: none; fill-rule: nonzero; opacity: 1;" transform="translate(1.4065934065934016 1.4065934065934016) scale(2.81 2.81)" >
273
+ <path d="M 36.203 35.438 v -3.51 c -1.218 -0.173 -2.447 -0.262 -3.677 -0.268 c -15.047 0 -27.289 12.244 -27.289 27.291 c 0 9.23 4.613 17.401 11.65 22.342 c -4.712 -5.039 -7.332 -11.681 -7.328 -18.58 C 9.559 47.88 21.453 35.784 36.203 35.438" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,242,234); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round" />
274
+ <path d="M 36.847 75.175 c 6.714 0 12.19 -5.341 12.44 -11.997 l 0.023 -59.417 h 10.855 c -0.232 -1.241 -0.349 -2.5 -0.35 -3.762 H 44.989 l -0.025 59.419 c -0.247 6.654 -5.726 11.993 -12.438 11.993 c -2.015 0.001 -4 -0.49 -5.782 -1.431 C 29.079 73.238 32.839 75.171 36.847 75.175 M 80.441 23.93 v -3.302 c -3.989 0.004 -7.893 -1.157 -11.232 -3.339 c 2.928 3.371 6.869 5.701 11.234 6.641" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,242,234); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round" />
275
+ <path d="M 69.209 17.286 c -3.272 -3.744 -5.075 -8.549 -5.073 -13.522 h -3.972 C 61.203 9.318 64.472 14.205 69.209 17.286 M 32.526 46.486 c -6.88 0.008 -12.455 5.583 -12.463 12.463 c 0.004 4.632 2.576 8.88 6.679 11.032 c -1.533 -2.114 -2.358 -4.657 -2.358 -7.268 c 0.007 -6.88 5.582 -12.457 12.463 -12.465 c 1.284 0 2.515 0.212 3.677 0.577 V 35.689 c -1.218 -0.173 -2.447 -0.262 -3.677 -0.268 c -0.216 0 -0.429 0.012 -0.643 0.016 v 11.626 C 35.014 46.685 33.774 46.49 32.526 46.486" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(255,0,79); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round" />
276
+ <path d="M 80.441 23.93 v 11.523 c -7.689 0 -14.81 -2.459 -20.627 -6.633 v 30.13 c 0 15.047 -12.24 27.289 -27.287 27.289 c -5.815 0 -11.207 -1.835 -15.639 -4.947 c 5.151 5.555 12.384 8.711 19.959 8.709 c 15.047 0 27.289 -12.242 27.289 -27.287 v -30.13 c 6.009 4.321 13.226 6.642 20.627 6.633 V 24.387 c -1.484 0 -2.927 -0.161 -4.323 -0.46" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(255,0,79); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round" />
277
+ <path d="M 59.813 58.949 v -30.13 c 6.009 4.322 13.226 6.642 20.627 6.633 V 23.93 c -4.364 -0.941 -8.305 -3.272 -11.232 -6.644 c -4.737 -3.081 -8.006 -7.968 -9.045 -13.522 H 49.309 l -0.023 59.417 c -0.249 6.654 -5.726 11.995 -12.44 11.995 c -4.007 -0.004 -7.768 -1.938 -10.102 -5.194 c -4.103 -2.151 -6.676 -6.399 -6.681 -11.032 c 0.008 -6.88 5.583 -12.455 12.463 -12.463 c 1.282 0 2.513 0.21 3.677 0.577 V 35.438 C 21.453 35.784 9.559 47.88 9.559 62.713 c 0 7.173 2.787 13.703 7.328 18.58 c 4.578 3.223 10.041 4.95 15.639 4.945 C 47.574 86.238 59.813 73.996 59.813 58.949" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round" />
278
+ </g>
279
+ </svg>
280
+ {%- endif %}
104
281
  </a>
105
282
  </div>
106
283
  {%- endif %}
@@ -108,7 +285,12 @@
108
285
  {%- if site.social_media.twitter %}
109
286
  <div class="mr-3">
110
287
  <a href="https://www.twitter.com/{{ site.social_media.twitter }}" class="tooltipped tooltipped-se" aria-label="Twitter: {{ site.social_media.twitter }}">
111
- <img src="/assets/brands/twitter.svg" alt="twitter" />
288
+ {%- if site.icon_color %}
289
+ {%- assign color = site.icon_color %}
290
+ {%- else %}
291
+ {%- assign color = "#1DA1F2" %}
292
+ {%- endif %}
293
+ <svg height="20" viewBox="0 0 273.5 222.3" fill="{{ color }}" xmlns="http://www.w3.org/2000/svg"><path d="M273.5 26.3a109.77 109.77 0 0 1-32.2 8.8 56.07 56.07 0 0 0 24.7-31 113.39 113.39 0 0 1-35.7 13.6 56.1 56.1 0 0 0-97 38.4 54 54 0 0 0 1.5 12.8A159.68 159.68 0 0 1 19.1 10.3a56.12 56.12 0 0 0 17.4 74.9 56.06 56.06 0 0 1-25.4-7v.7a56.11 56.11 0 0 0 45 55 55.65 55.65 0 0 1-14.8 2 62.39 62.39 0 0 1-10.6-1 56.24 56.24 0 0 0 52.4 39 112.87 112.87 0 0 1-69.7 24 119 119 0 0 1-13.4-.8 158.83 158.83 0 0 0 86 25.2c103.2 0 159.6-85.5 159.6-159.6 0-2.4-.1-4.9-.2-7.3a114.25 114.25 0 0 0 28.1-29.1"/></svg>
112
294
  </a>
113
295
  </div>
114
296
  {%- endif %}
@@ -116,7 +298,12 @@
116
298
  {%- if site.social_media.unsplash %}
117
299
  <div class="mr-3">
118
300
  <a href="https://www.unsplash.com/{{ site.social_media.unsplash }}" class="tooltipped tooltipped-se" aria-label="Unsplash: {{ site.social_media.unsplash }}">
119
- <img src="/assets/brands/unsplash.svg" alt="unsplash" />
301
+ {%- if site.icon_color %}
302
+ {%- assign color = site.icon_color %}
303
+ {%- else %}
304
+ {%- assign color = "#959da5" %}
305
+ {%- endif %}
306
+ <svg width="20" height="20" viewBox="0 0 32 32" fill="{{ color }}" xmlns="http://www.w3.org/2000/svg"><path d="M10 9V0h12v9H10zm12 5h10v18H0V14h10v9h12v-9z" fill-rule="nonzero" /></svg>
120
307
  </a>
121
308
  </div>
122
309
  {%- endif %}
@@ -124,7 +311,12 @@
124
311
  {%- if site.social_media.vk %}
125
312
  <div class="mr-3">
126
313
  <a href="https://vk.com/{{ site.social_media.vk }}" class="tooltipped tooltipped-se" aria-label="VK: {{ site.social_media.vk }}">
127
- <img src="/assets/brands/vk.svg" alt="vk" />
314
+ {%- if site.icon_color %}
315
+ {%- assign color = site.icon_color %}
316
+ {%- else %}
317
+ {%- assign color = "#0077FF" %}
318
+ {%- endif %}
319
+ <svg height="20" viewBox="0 0 20 12" fill="{{ color }}" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M19.5294 0.826078C19.6776 0.360085 19.5294 0.0211812 18.8727 0.0211812H16.691C16.1403 0.0211812 15.8861 0.317723 15.7379 0.635446C15.7379 0.635446 14.6153 3.34668 13.0478 5.10474C12.5395 5.6131 12.3065 5.78256 12.0311 5.78256C11.8828 5.78256 11.6922 5.6131 11.6922 5.14711V0.804897C11.6922 0.254177 11.5227 0 11.0568 0H7.62535C7.28644 0 7.07463 0.254177 7.07463 0.508355C7.07463 1.03789 7.85834 1.16498 7.94307 2.64769V5.86728C7.94307 6.56627 7.81598 6.69336 7.54062 6.69336C6.79927 6.69336 4.99884 3.96094 3.91858 0.847261C3.70677 0.232997 3.49495 0 2.94423 0H0.741353C0.105908 0 0 0.29654 0 0.614263C0 1.18616 0.741354 4.06685 3.45259 7.87952C5.25302 10.4849 7.81598 11.8828 10.1248 11.8828C11.5227 11.8828 11.6922 11.5651 11.6922 11.0356V9.06569C11.6922 8.43025 11.8193 8.32434 12.2641 8.32434C12.5818 8.32434 13.1537 8.49379 14.4458 9.7435C15.9285 11.2262 16.1827 11.904 17.0088 11.904H19.1905C19.8259 11.904 20.1224 11.5863 19.953 10.972C19.7624 10.3578 19.0422 9.46814 18.1102 8.40906C17.6018 7.81598 16.8393 7.15935 16.6063 6.84163C16.2886 6.418 16.3733 6.24855 16.6063 5.86728C16.5851 5.86728 19.254 2.09697 19.5294 0.826078Z"/></svg>
128
320
  </a>
129
321
  </div>
130
322
  {%- endif %}
@@ -132,7 +324,12 @@
132
324
  {%- if site.social_media.vscode %}
133
325
  <div class="mr-3">
134
326
  <a href="https://marketplace.visualstudio.com/publishers/{{ site.social_media.vscode }}" class="tooltipped tooltipped-se" aria-label="VS Code Marketplace: {{ site.social_media.vscode }}">
135
- <img src="/assets/brands/vscode.svg" alt="vscode" />
327
+ {%- if site.icon_color %}
328
+ {%- assign color = site.icon_color %}
329
+ {%- else %}
330
+ {%- assign color = "#0078d7" %}
331
+ {%- endif %}
332
+ <svg height="20" viewBox="0 0 24 24" fill="{{ color }}" xmlns="http://www.w3.org/2000/svg"><path d="M17.583.063a1.5 1.5 0 00-1.032.392 1.5 1.5 0 00-.001 0A.88.88 0 0016.5.5L8.528 9.316 3.875 5.5l-.407-.35a1 1 0 00-1.024-.154 1 1 0 00-.012.005l-1.817.75a1 1 0 00-.077.036 1 1 0 00-.047.028 1 1 0 00-.038.022 1 1 0 00-.048.034 1 1 0 00-.03.024 1 1 0 00-.044.036 1 1 0 00-.036.033 1 1 0 00-.032.035 1 1 0 00-.033.038 1 1 0 00-.035.044 1 1 0 00-.024.034 1 1 0 00-.032.05 1 1 0 00-.02.035 1 1 0 00-.024.05 1 1 0 00-.02.045 1 1 0 00-.016.044 1 1 0 00-.016.047 1 1 0 00-.015.055 1 1 0 00-.01.04 1 1 0 00-.008.054 1 1 0 00-.006.05A1 1 0 000 6.668v10.666a1 1 0 00.615.917l1.817.764a1 1 0 001.035-.164l.408-.35 4.653-3.815 7.973 8.815a1.5 1.5 0 00.072.065 1.5 1.5 0 00.057.05 1.5 1.5 0 00.058.042 1.5 1.5 0 00.063.044 1.5 1.5 0 00.065.038 1.5 1.5 0 00.065.036 1.5 1.5 0 00.068.031 1.5 1.5 0 00.07.03 1.5 1.5 0 00.073.025 1.5 1.5 0 00.066.02 1.5 1.5 0 00.08.02 1.5 1.5 0 00.068.014 1.5 1.5 0 00.075.01 1.5 1.5 0 00.075.008 1.5 1.5 0 00.073.003 1.5 1.5 0 00.077 0 1.5 1.5 0 00.078-.005 1.5 1.5 0 00.067-.007 1.5 1.5 0 00.087-.015 1.5 1.5 0 00.06-.012 1.5 1.5 0 00.08-.022 1.5 1.5 0 00.068-.02 1.5 1.5 0 00.07-.028 1.5 1.5 0 00.09-.037l4.944-2.377a1.5 1.5 0 00.476-.362 1.5 1.5 0 00.09-.112 1.5 1.5 0 00.004-.007 1.5 1.5 0 00.08-.125 1.5 1.5 0 00.062-.12 1.5 1.5 0 00.009-.017 1.5 1.5 0 00.04-.108 1.5 1.5 0 00.015-.037 1.5 1.5 0 00.03-.107 1.5 1.5 0 00.009-.037 1.5 1.5 0 00.017-.1 1.5 1.5 0 00.008-.05 1.5 1.5 0 00.006-.09 1.5 1.5 0 00.004-.08V3.942a1.5 1.5 0 000-.003 1.5 1.5 0 000-.032 1.5 1.5 0 00-.01-.15 1.5 1.5 0 00-.84-1.17L18.206.21a1.5 1.5 0 00-.622-.146zM18 6.92v10.163l-6.198-5.08zM3 8.574l3.099 3.427-3.1 3.426z"/></svg>
136
333
  </a>
137
334
  </div>
138
335
  {%- endif %}
@@ -140,7 +337,12 @@
140
337
  {%- if site.social_media.x %}
141
338
  <div class="mr-3">
142
339
  <a href="https://www.x.com/{{ site.social_media.x }}" class="tooltipped tooltipped-se" aria-label="X: {{ site.social_media.x }}">
143
- <img src="/assets/brands/x.svg" alt="x" />
340
+ {%- if site.icon_color %}
341
+ {%- assign color = site.icon_color %}
342
+ {%- else %}
343
+ {%- assign color = "#959da5" %}
344
+ {%- endif %}
345
+ <svg width="20" height="20" viewBox="0 0 1200 1227" fill="{{ color }}" xmlns="http://www.w3.org/2000/svg"><path d="M714.163 519.284L1160.89 0H1055.03L667.137 450.887L357.328 0H0L468.492 681.821L0 1226.37H105.866L515.491 750.218L842.672 1226.37H1200L714.137 519.284H714.163ZM569.165 687.828L521.697 619.934L144.011 79.6944H306.615L611.412 515.685L658.88 583.579L1055.08 1150.3H892.476L569.165 687.854V687.828Z"/></svg>
144
346
  </a>
145
347
  </div>
146
348
  {%- endif %}
@@ -148,9 +350,14 @@
148
350
  {%- if site.social_media.youtube %}
149
351
  <div class="mr-3">
150
352
  <a href="https://www.youtube.com/{{ site.social_media.youtube }}" class="tooltipped tooltipped-se" aria-label="YouTube: {{ site.social_media.youtube }}">
151
- <img src="/assets/brands/youtube.svg" alt="youtube" />
353
+ {%- if site.icon_color %}
354
+ {%- assign color = site.icon_color %}
355
+ {%- else %}
356
+ {%- assign color = "#c4302b" %}
357
+ {%- endif %}
358
+ <svg height="20" viewBox="0 0 19.17 13.6" fill="{{ color }}" xmlns="http://www.w3.org/2000/svg"><path d="M18.77 2.13A2.4 2.4 0 0 0 17.09.42C15.59 0 9.58 0 9.58 0a57.55 57.55 0 0 0-7.5.4A2.49 2.49 0 0 0 .39 2.13 26.27 26.27 0 0 0 0 6.8a26.15 26.15 0 0 0 .39 4.67 2.43 2.43 0 0 0 1.69 1.71c1.52.42 7.5.42 7.5.42a57.69 57.69 0 0 0 7.51-.4 2.4 2.4 0 0 0 1.68-1.71 25.63 25.63 0 0 0 .4-4.67 24 24 0 0 0-.4-4.69zM7.67 9.71V3.89l5 2.91z"/></svg>
152
359
  </a>
153
360
  </div>
154
361
  {%- endif %}
155
362
 
156
- </div>
363
+ </div>
@@ -0,0 +1,4 @@
1
+ <div class="d-flex flex-items-center">
2
+ <button id="theme-toggle" class="btn btn-sm mr-2" type="button"><span id="theme-icon"
3
+ class="octicon octicon-moon-24"></span></button>
4
+ </div>