jekyll-theme-profile 0.2.5 → 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 +134 -44
  3. data/_config.yml +87 -30
  4. data/_includes/breadcrumbs.html +59 -0
  5. data/_includes/header.html +75 -24
  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 -65
  10. data/_includes/repo-card.html +1 -1
  11. data/_includes/repositories.html +1 -1
  12. data/_includes/social.html +242 -19
  13. data/_includes/toggle.html +4 -0
  14. data/_layouts/default.html +94 -31
  15. data/_sass/_main.scss +13 -1
  16. metadata +5 -40
  17. data/assets/brands/behance.svg +0 -1
  18. data/assets/brands/docker.svg +0 -1
  19. data/assets/brands/dribbble.svg +0 -1
  20. data/assets/brands/facebook.svg +0 -1
  21. data/assets/brands/hackerrank.svg +0 -1
  22. data/assets/brands/instagram.svg +0 -1
  23. data/assets/brands/keybase.svg +0 -1
  24. data/assets/brands/linkedin.svg +0 -1
  25. data/assets/brands/mastodon.svg +0 -1
  26. data/assets/brands/medium.svg +0 -1
  27. data/assets/brands/stackoverflow.svg +0 -1
  28. data/assets/brands/telegram.svg +0 -1
  29. data/assets/brands/twitter.svg +0 -1
  30. data/assets/brands/unsplash.svg +0 -1
  31. data/assets/brands/vk.svg +0 -1
  32. data/assets/brands/vscode.svg +0 -1
  33. data/assets/brands/youtube.svg +0 -1
  34. data/assets/img/blog.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
@@ -26,37 +26,81 @@
26
26
  {%- assign user_img = user.avatar_url %}
27
27
  {%- endif %}
28
28
 
29
- {%- if site.metadata %}
29
+ {%- if site.metadata == true or site.metadata == false %}
30
30
  {%- assign metadata = site.metadata %}
31
31
  {%- else %}
32
32
  {%- assign metadata = true %}
33
33
  {%- endif %}
34
34
 
35
35
  <!doctype html>
36
- <html lang="en" class="min-height-full min-width" data-color-mode="auto" data-light-theme="light" data-dark-theme="dark_dimmed">
36
+ <html lang="en" class="min-height-full min-width" data-color-mode="auto" data-light-theme="light"
37
+ data-dark-theme="dark_dimmed">
37
38
 
38
39
  {%- include header.html %}
39
40
 
40
41
  <body class="min-height-full">
41
42
  {%- if style == 'stacked' %}
42
- <div class="container-lg p-responsive py-3">
43
- <div class="text-center">
44
- {%- include nav.html breadcrumbs=breadcrumbs %}
45
- {%- include masthead.html metadata=metadata %}
43
+ <div class="container-lg p-responsive min-height-full">
44
+ <div class="d-flex flex-justify-end mt-2">
45
+ {%- include toggle.html %}
46
46
  </div>
47
- <div class="p-responsive mb-6 markdown-body">
47
+ <div class="text-center py-3 border-bottom">
48
+ {%- include masthead.html metadata=metadata %}
49
+ {%- if site.repo_info %}
50
+ <div class="my-2">
51
+ {% include mini-repo-info-card.html class="Box-row-link" %}
52
+ </div>
53
+ {%- endif %}
54
+ {%- if site.social_media %}
55
+ <div class="my-2">
56
+ {%- include social.html %}
57
+ </div>
58
+ {%- endif %}
59
+ </div>
60
+ {%- if site.nav %}
61
+ <nav class="Header d-flex flex-column flex-md-row flex-justify-center">
62
+ {%- include nav.html %}
63
+ </nav>
64
+ {%- endif %}
65
+ {%- if breadcrumbs %}
66
+ <div class="mt-1">
67
+ {%- include breadcrumbs.html %}
68
+ </div>
69
+ {%- endif %}
70
+ <div class="p-responsive p-3 markdown-body color-bg-default">
48
71
  {{ content }}
49
72
  </div>
50
73
  </div>
51
74
  {%- elsif style == 'sidebar' %}
52
- <div class="container-lg d-md-flex min-height-full border-md-bottom">
53
- <div
54
- class="flex-self-stretch border-gray-light px-4 py-6 text-center">
75
+ <div class="container-xl d-lg-flex min-height-full">
76
+ <div class="col-lg-4 border-gray-light px-4 py-6 text-center">
55
77
  {%- include masthead.html metadata=metadata %}
78
+ {%- if site.repo_info %}
79
+ <div class="my-2">
80
+ {% include mini-repo-info-card.html class="Box-row-link" %}
81
+ </div>
82
+ {%- endif %}
83
+ {%- if site.social_media %}
84
+ <div class="my-2">
85
+ {%- include social.html %}
86
+ </div>
87
+ {%- endif %}
88
+ {%- if site.nav %}
89
+ <nav class="d-flex flex-column Header">
90
+ {%- include nav.html %}
91
+ </nav>
92
+ {%- endif %}
56
93
  </div>
57
- <div class="col-md-9 col-lg-8 border-top border-md-top-0 px-4 ">
58
- <div class="container-lg py-3 ml-0">
59
- {%- include nav.html breadcrumbs=breadcrumbs %}
94
+ <div class="col-lg-8 border-top border-lg-top-0 px-4 color-bg-default">
95
+ <div class="py-3">
96
+ <div class="d-flex">
97
+ {%- if breadcrumbs %}
98
+ {%- include breadcrumbs.html %}
99
+ {%- endif %}
100
+ <div class="flex-1">
101
+ </div>
102
+ {% include toggle.html %}
103
+ </div>
60
104
  <div class="p-responsive mb-6 mt-3 markdown-body">
61
105
  {{ content }}
62
106
  </div>
@@ -65,26 +109,45 @@
65
109
  </div>
66
110
  {%- else %}
67
111
  <div class="Header">
68
- <div class="Header-item">
69
- <a href="{{ site.baseurl }}/" class="Header-link f4 d-flex flex-items-center">
70
- {% octicon mark-github height:32 %}
71
- </a>
72
- </div>
73
- <div class="Header-item Header-item--full">
74
- {{ name }}
75
- </div>
76
- <div class="Header-item">
77
- {%- include social.html %}
78
- </div>
79
- <div class="Header-item mr-0 ml-3">
80
- <a href="https://github.com/{{ user.login }}" class="Header-link f4 d-flex flex-items-center">
81
- <img class="avatar img-cover" height="20" alt="{{ name }}" src="{{ user_img | relative_url }}" width="20">
82
- </a>
112
+ <div class="flex-1">
113
+ <div class="d-flex">
114
+ <div class="Header-item">
115
+ <a href="{{ site.baseurl }}/" class="Header-link f4 d-flex flex-items-center">
116
+ {% octicon mark-github height:32 %}
117
+ </a>
118
+ </div>
119
+ <div class="Header-item Header-item--full">{{ name }}</div>
120
+ {%- if site.social_media %}
121
+ <div class="Header-item hide-md hide-sm">
122
+ {%- include social.html %}
123
+ </div>
124
+ {%- endif %}
125
+ {%- if site.repo_info %}
126
+ <div class="Header-item hide-sm">
127
+ {% include mini-repo-info-card.html class="Header-link" %}
128
+ </div>
129
+ {% endif %}
130
+ {% include toggle.html %}
131
+ <div class="Header-item mr-0">
132
+ <a href="https://github.com/{{ user.login }}" class="Header-link d-flex flex-items-center">
133
+ <img class="avatar img-cover" height="32" width="32" alt="{{ name }}"
134
+ src="{{ user_img | relative_url }}">
135
+ </a>
136
+ </div>
137
+ </div>
138
+ {%- if site.nav %}
139
+ <div class="d-flex">
140
+ <div class="Header-item">
141
+ {%- include nav.html %}
142
+ </div>
143
+ </div>
144
+ {%- endif %}
83
145
  </div>
84
146
  </div>
85
-
86
- <div class="container-lg py-3">
87
- {%- include nav.html breadcrumbs=breadcrumbs %}
147
+ <div class="container-lg p-3 color-bg-default flex-1">
148
+ {%- if breadcrumbs %}
149
+ {%- include breadcrumbs.html %}
150
+ {%- endif %}
88
151
  <div class="p-responsive mb-6 mt-3 markdown-body">
89
152
  {{ content }}
90
153
  </div>
data/_sass/_main.scss CHANGED
@@ -29,7 +29,7 @@
29
29
 
30
30
  .img-masthead {
31
31
  aspect-ratio: 1 / 1;
32
- max-width: 260px;
32
+ max-width: 296px;
33
33
  overflow: hidden; /* Hide any overflow to maintain circle shape */
34
34
  display: flex; /* Use flexbox to center the image */
35
35
  justify-content: center; /* Center horizontally */
@@ -47,3 +47,15 @@
47
47
  .overflow-wrap-word {
48
48
  overflow-wrap: break-word;
49
49
  }
50
+
51
+
52
+ body::before {
53
+ content: "";
54
+ position: absolute;
55
+ top: 0;
56
+ right: 0;
57
+ bottom: 0;
58
+ left: 0;
59
+ z-index: -1;
60
+ background-color: var(--overlay-color); /* Use the --overlay-color variable here */
61
+ }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-profile
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.5
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Allison Thackston
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-08-01 00:00:00.000000000 Z
11
+ date: 2023-08-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -110,17 +110,20 @@ files:
110
110
  - LICENSE.txt
111
111
  - README.md
112
112
  - _config.yml
113
+ - _includes/breadcrumbs.html
113
114
  - _includes/footer.html
114
115
  - _includes/header.html
115
116
  - _includes/link-card.html
116
117
  - _includes/links.html
117
118
  - _includes/masthead.html
119
+ - _includes/mini-repo-info-card.html
118
120
  - _includes/nav.html
119
121
  - _includes/post-card.html
120
122
  - _includes/posts.html
121
123
  - _includes/repo-card.html
122
124
  - _includes/repositories.html
123
125
  - _includes/social.html
126
+ - _includes/toggle.html
124
127
  - _layouts/default.html
125
128
  - _layouts/home.html
126
129
  - _layouts/page.html
@@ -131,46 +134,8 @@ files:
131
134
  - _sass/_main.scss
132
135
  - _sass/jekyll-theme-profile.scss
133
136
  - assets/blog/index.html
134
- - assets/brands/behance.svg
135
- - assets/brands/docker.svg
136
- - assets/brands/dribbble.svg
137
- - assets/brands/facebook.svg
138
- - assets/brands/hackerrank.svg
139
- - assets/brands/instagram.svg
140
- - assets/brands/keybase.svg
141
- - assets/brands/linkedin.svg
142
- - assets/brands/mastodon.svg
143
- - assets/brands/medium.svg
144
- - assets/brands/stackoverflow.svg
145
- - assets/brands/telegram.svg
146
- - assets/brands/twitter.svg
147
- - assets/brands/unsplash.svg
148
- - assets/brands/vk.svg
149
- - assets/brands/vscode.svg
150
- - assets/brands/youtube.svg
151
137
  - assets/css/style.scss
152
- - assets/img/blog.png
153
138
  - assets/img/favicon.ico
154
- - assets/img/icon-sidebar.png
155
- - assets/img/icon-stacked.png
156
- - assets/img/icon-topbar.png
157
- - assets/img/links.png
158
- - assets/img/octocat.png
159
- - assets/img/repositories.png
160
- - assets/img/sidebar-laptop.png
161
- - assets/img/sidebar-phone.png
162
- - assets/img/sidebar-preview.png
163
- - assets/img/sidebar-tablet.png
164
- - assets/img/social-media.png
165
- - assets/img/stacked-laptop.png
166
- - assets/img/stacked-phone.png
167
- - assets/img/stacked-preview.png
168
- - assets/img/stacked-tablet.png
169
- - assets/img/tobpar-phone.png
170
- - assets/img/topbar-laptop.png
171
- - assets/img/topbar-preview.png
172
- - assets/img/topbar-tablet.png
173
- - assets/img/user-image.jpg
174
139
  homepage: https://www.althack.dev/jekyll-theme-profile
175
140
  licenses:
176
141
  - MIT
@@ -1 +0,0 @@
1
- <svg height="20" fill="#959da5" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 455 455" style="enable-background:new 0 0 455 455;" xml:space="preserve"> <g> <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"/> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> </svg>
@@ -1 +0,0 @@
1
- <svg width="20" height="20" fill="#959da5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><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>
@@ -1 +0,0 @@
1
- <svg width="20" height="20" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="32" height="32" fill="black" fill-opacity="0"/><circle cx="16" cy="16" r="15.5" fill="#959da5"/><rect width="32" height="32" fill="black" fill-opacity="0"/><path fill-rule="evenodd" clip-rule="evenodd" d="M16 0C7.16703 0 0 7.16703 0 16C0 24.833 7.16703 32 16 32C24.8156 32 32 24.833 32 16C32 7.16703 24.8156 0 16 0ZM26.5683 7.37527C28.4772 9.70065 29.6226 12.6681 29.6573 15.8785C29.2061 15.7918 24.6941 14.872 20.1475 15.4447C20.0434 15.2191 19.9566 14.9761 19.8525 14.7332C19.5748 14.0738 19.2625 13.397 18.9501 12.7549C23.9826 10.7072 26.2733 7.75705 26.5683 7.37527ZM16 2.36009C19.4707 2.36009 22.6464 3.66161 25.0586 5.7961C24.8156 6.14317 22.7505 8.90239 17.8915 10.7245C15.6529 6.61171 13.1714 3.24512 12.7896 2.72451C13.8134 2.48156 14.8894 2.36009 16 2.36009ZM10.1866 3.64425C10.551 4.13015 12.9805 7.5141 15.2538 11.5401C8.86768 13.2408 3.22777 13.2061 2.62039 13.2061C3.50542 8.9718 6.36876 5.44902 10.1866 3.64425ZM2.32538 16.0174C2.32538 15.8785 2.32538 15.7397 2.32538 15.6009C2.9154 15.6182 9.54447 15.705 16.3644 13.6573C16.7636 14.4208 17.128 15.2017 17.4751 15.9826C17.3015 16.0347 17.1106 16.0868 16.9371 16.1388C9.89154 18.4121 6.14317 24.6247 5.8308 25.1453C3.6616 22.7332 2.32538 19.5228 2.32538 16.0174ZM16 29.6746C12.8416 29.6746 9.92625 28.5987 7.61822 26.7939C7.86117 26.2907 10.6377 20.9458 18.3427 18.256C18.3774 18.2386 18.3948 18.2386 18.4295 18.2213C20.3557 23.2017 21.1367 27.3839 21.3449 28.5813C19.6963 29.2928 17.8915 29.6746 16 29.6746ZM23.6182 27.3319C23.4794 26.4989 22.7505 22.5076 20.9631 17.5965C25.2495 16.9197 28.9978 18.0304 29.4664 18.1866C28.8764 21.987 26.6898 25.2668 23.6182 27.3319Z" fill="#818181"/></svg>
@@ -1 +0,0 @@
1
- <svg height="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15.3 15.4"><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" fill="#959da5"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" height="20" xml:space="preserve" viewBox="0 0 126 139"><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" fill="#959DA5"/></svg>
@@ -1 +0,0 @@
1
- <svg viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="#959da5"><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>
@@ -1 +0,0 @@
1
- <svg width="20" height="20" version="1.1" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" viewBox="0 0 71 76.3" style="enable-background:new 0 0 71 76.3;" xml:space="preserve"><style type="text/css">.st0{fill:#959da5;}</style><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>
@@ -1 +0,0 @@
1
- <svg height="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 19 18"><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" fill="#959da5"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 216.4144 232.00976"><path fill="#959da5" 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>
@@ -1 +0,0 @@
1
- <svg width="20" height="20" viewBox="32 25 125 125" 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" fill="#959da5"></path></svg>
@@ -1 +0,0 @@
1
- <svg height="24" fill="#959da5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><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>
@@ -1 +0,0 @@
1
- <svg height="20" viewBox="0 0 20 17" fill="none" 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" fill="#959DA5"/></svg>
@@ -1 +0,0 @@
1
- <svg height="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 273.5 222.3"><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" fill="#959da5"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="20" height="20" fill="#959da5"><path d="M20.8 18.1c0 2.7-2.2 4.8-4.8 4.8s-4.8-2.1-4.8-4.8c0-2.7 2.2-4.8 4.8-4.8 2.7.1 4.8 2.2 4.8 4.8zM32 10.7v14.9c0 2.3-1.9 4.3-4.3 4.3H4.3C1.9 29.9 0 28 0 25.6v-15c0-2.3 1.9-4.3 4.3-4.3H8L8.8 4c.4-1.1 1.7-2 2.9-2h8.6c1.2 0 2.5.9 2.9 2l.8 2.4h3.7c2.4 0 4.3 1.9 4.3 4.3zm-8.6 7.5c0-4.1-3.3-7.5-7.5-7.5-4.1 0-7.5 3.4-7.5 7.5s3.3 7.5 7.5 7.5c4.2-.1 7.5-3.4 7.5-7.5z"/></svg>
data/assets/brands/vk.svg DELETED
@@ -1 +0,0 @@
1
- <svg height="20" viewBox="0 0 20 12" fill="none" 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" fill="#959DA5"/></svg>
@@ -1 +0,0 @@
1
- <svg height="20" viewBox="0 0 24 24" fill="#959da5" 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>
@@ -1 +0,0 @@
1
- <svg height="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 19.17 13.6"><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" fill="#959da5"/></svg>
data/assets/img/blog.png DELETED
Binary file
Binary file
Binary file
Binary file
data/assets/img/links.png DELETED
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file