vitrina 0.2.5 β†’ 0.2.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (187) hide show
  1. checksums.yaml +4 -4
  2. data/.editorconfig +13 -0
  3. data/.github/FUNDING.yml +4 -0
  4. data/.github/ISSUE_TEMPLATE/bug_report.md +38 -0
  5. data/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
  6. data/.github/workflows/gempush.yml +41 -0
  7. data/.gitignore +7 -0
  8. data/.travis.yml +8 -0
  9. data/404.md +5 -0
  10. data/CHANGELOG.md +59 -0
  11. data/Gemfile +9 -0
  12. data/LICENSE +21 -0
  13. data/README.md +407 -0
  14. data/_config.yml +39 -0
  15. data/_data/general.json +133 -0
  16. data/_data/home.json +316 -0
  17. data/_data/links.json +34 -0
  18. data/_data/resume.json +80 -0
  19. data/_includes/foot.html +6 -0
  20. data/_includes/footer.html +21 -0
  21. data/_includes/head.html +13 -0
  22. data/_includes/header.html +63 -0
  23. data/_includes/pagination.html +75 -0
  24. data/_includes/util/grid_columns.html +49 -0
  25. data/_includes/util/item_content.html +8 -0
  26. data/_includes/util/items.html +63 -0
  27. data/_includes/util/navbar_items.html +76 -0
  28. data/_includes/util/prepend_link.html +5 -0
  29. data/_includes/util/timeline_cards.html +20 -0
  30. data/_layouts/blog.html +53 -0
  31. data/_layouts/compress.html +10 -0
  32. data/_layouts/contact.html +80 -0
  33. data/_layouts/default.html +33 -0
  34. data/_layouts/error.html +10 -0
  35. data/_layouts/home.html +103 -0
  36. data/_layouts/papers.html +80 -0
  37. data/_layouts/post.html +33 -0
  38. data/_layouts/projects.html +58 -0
  39. data/_layouts/resume.html +62 -0
  40. data/_papers/A-systematic-review-on-the-productive-effects-of-hobbies.md +15 -0
  41. data/_papers/Applications-of-open-collaboration-in-software-development.md +14 -0
  42. data/_posts/2019-04-03-welcome-human.md +52 -0
  43. data/_projects/Make.md +5 -0
  44. data/_projects/Meet.md +5 -0
  45. data/_projects/Mood.md +5 -0
  46. data/_projects/Take.md +5 -0
  47. data/_projects/Think.md +5 -0
  48. data/_sass/_bulma.scss +3 -0
  49. data/_sass/_fork_awesome.scss +11 -0
  50. data/_sass/code.scss +128 -0
  51. data/_sass/customize.scss +69 -0
  52. data/_sass/elements.scss +489 -0
  53. data/assets/css/styles.scss +15 -0
  54. data/assets/img/card.png +0 -0
  55. data/assets/img/icon.png +0 -0
  56. data/assets/img/logo.png +0 -0
  57. data/assets/img/made-with-bulma.png +0 -0
  58. data/assets/img/make.png +0 -0
  59. data/assets/img/meet.png +0 -0
  60. data/assets/img/mood.png +0 -0
  61. data/assets/img/take.png +0 -0
  62. data/assets/img/think.png +0 -0
  63. data/assets/js/navbar.js +10 -0
  64. data/assets/js/validate.js +77 -0
  65. data/blog/index.html +4 -0
  66. data/contact.md +4 -0
  67. data/index.md +3 -0
  68. data/node_modules/.yarn-integrity +18 -0
  69. data/node_modules/bulma/CHANGELOG.md +1390 -0
  70. data/node_modules/bulma/LICENSE +21 -0
  71. data/node_modules/bulma/README.md +130 -0
  72. data/node_modules/bulma/bulma.sass +9 -0
  73. data/node_modules/bulma/css/bulma.css +10855 -0
  74. data/node_modules/bulma/css/bulma.css.map +1 -0
  75. data/node_modules/bulma/css/bulma.min.css +1 -0
  76. data/node_modules/bulma/package.json +52 -0
  77. data/node_modules/bulma/sass/.DS_Store +0 -0
  78. data/node_modules/bulma/sass/base/_all.sass +5 -0
  79. data/node_modules/bulma/sass/base/generic.sass +142 -0
  80. data/node_modules/bulma/sass/base/helpers.sass +281 -0
  81. data/node_modules/bulma/sass/base/minireset.sass +79 -0
  82. data/node_modules/bulma/sass/components/_all.sass +15 -0
  83. data/node_modules/bulma/sass/components/breadcrumb.sass +75 -0
  84. data/node_modules/bulma/sass/components/card.sass +79 -0
  85. data/node_modules/bulma/sass/components/dropdown.sass +81 -0
  86. data/node_modules/bulma/sass/components/level.sass +77 -0
  87. data/node_modules/bulma/sass/components/list.sass +39 -0
  88. data/node_modules/bulma/sass/components/media.sass +50 -0
  89. data/node_modules/bulma/sass/components/menu.sass +57 -0
  90. data/node_modules/bulma/sass/components/message.sass +99 -0
  91. data/node_modules/bulma/sass/components/modal.sass +113 -0
  92. data/node_modules/bulma/sass/components/navbar.sass +441 -0
  93. data/node_modules/bulma/sass/components/pagination.sass +150 -0
  94. data/node_modules/bulma/sass/components/panel.sass +119 -0
  95. data/node_modules/bulma/sass/components/tabs.sass +151 -0
  96. data/node_modules/bulma/sass/elements/_all.sass +15 -0
  97. data/node_modules/bulma/sass/elements/box.sass +24 -0
  98. data/node_modules/bulma/sass/elements/button.sass +323 -0
  99. data/node_modules/bulma/sass/elements/container.sass +24 -0
  100. data/node_modules/bulma/sass/elements/content.sass +155 -0
  101. data/node_modules/bulma/sass/elements/form.sass +1 -0
  102. data/node_modules/bulma/sass/elements/icon.sass +21 -0
  103. data/node_modules/bulma/sass/elements/image.sass +71 -0
  104. data/node_modules/bulma/sass/elements/notification.sass +43 -0
  105. data/node_modules/bulma/sass/elements/other.sass +39 -0
  106. data/node_modules/bulma/sass/elements/progress.sass +67 -0
  107. data/node_modules/bulma/sass/elements/table.sass +127 -0
  108. data/node_modules/bulma/sass/elements/tag.sass +128 -0
  109. data/node_modules/bulma/sass/elements/title.sass +70 -0
  110. data/node_modules/bulma/sass/form/_all.sass +8 -0
  111. data/node_modules/bulma/sass/form/checkbox-radio.sass +21 -0
  112. data/node_modules/bulma/sass/form/file.sass +180 -0
  113. data/node_modules/bulma/sass/form/input-textarea.sass +64 -0
  114. data/node_modules/bulma/sass/form/select.sass +85 -0
  115. data/node_modules/bulma/sass/form/shared.sass +55 -0
  116. data/node_modules/bulma/sass/form/tools.sass +205 -0
  117. data/node_modules/bulma/sass/grid/_all.sass +4 -0
  118. data/node_modules/bulma/sass/grid/columns.sass +504 -0
  119. data/node_modules/bulma/sass/grid/tiles.sass +34 -0
  120. data/node_modules/bulma/sass/layout/_all.sass +5 -0
  121. data/node_modules/bulma/sass/layout/footer.sass +9 -0
  122. data/node_modules/bulma/sass/layout/hero.sass +145 -0
  123. data/node_modules/bulma/sass/layout/section.sass +13 -0
  124. data/node_modules/bulma/sass/utilities/.DS_Store +0 -0
  125. data/node_modules/bulma/sass/utilities/_all.sass +8 -0
  126. data/node_modules/bulma/sass/utilities/animations.sass +5 -0
  127. data/node_modules/bulma/sass/utilities/controls.sass +50 -0
  128. data/node_modules/bulma/sass/utilities/derived-variables.sass +106 -0
  129. data/node_modules/bulma/sass/utilities/functions.sass +110 -0
  130. data/node_modules/bulma/sass/utilities/initial-variables.sass +77 -0
  131. data/node_modules/bulma/sass/utilities/mixins.sass +261 -0
  132. data/node_modules/fork-awesome/CHANGELOG.md +91 -0
  133. data/node_modules/fork-awesome/CONTRIBUTORS.md +31 -0
  134. data/node_modules/fork-awesome/LICENSES +452 -0
  135. data/node_modules/fork-awesome/README.md +93 -0
  136. data/node_modules/fork-awesome/css/fork-awesome.css +2573 -0
  137. data/node_modules/fork-awesome/css/fork-awesome.min.css +12 -0
  138. data/node_modules/fork-awesome/css/fork-awesome.min.css.map +1 -0
  139. data/node_modules/fork-awesome/css/v5-compat.css +446 -0
  140. data/node_modules/fork-awesome/css/v5-compat.min.css +12 -0
  141. data/node_modules/fork-awesome/css/v5-compat.min.css.map +1 -0
  142. data/node_modules/fork-awesome/fonts/forkawesome-webfont.eot +0 -0
  143. data/node_modules/fork-awesome/fonts/forkawesome-webfont.svg +2849 -0
  144. data/node_modules/fork-awesome/fonts/forkawesome-webfont.ttf +0 -0
  145. data/node_modules/fork-awesome/fonts/forkawesome-webfont.woff +0 -0
  146. data/node_modules/fork-awesome/fonts/forkawesome-webfont.woff2 +0 -0
  147. data/node_modules/fork-awesome/less/animated.less +34 -0
  148. data/node_modules/fork-awesome/less/bordered-pulled.less +25 -0
  149. data/node_modules/fork-awesome/less/core.less +12 -0
  150. data/node_modules/fork-awesome/less/fixed-width.less +6 -0
  151. data/node_modules/fork-awesome/less/fork-awesome.less +27 -0
  152. data/node_modules/fork-awesome/less/icons.less +879 -0
  153. data/node_modules/fork-awesome/less/larger.less +13 -0
  154. data/node_modules/fork-awesome/less/list.less +19 -0
  155. data/node_modules/fork-awesome/less/mixins.less +60 -0
  156. data/node_modules/fork-awesome/less/path.less +15 -0
  157. data/node_modules/fork-awesome/less/rotated-flipped.less +20 -0
  158. data/node_modules/fork-awesome/less/screen-reader.less +5 -0
  159. data/node_modules/fork-awesome/less/stacked.less +20 -0
  160. data/node_modules/fork-awesome/less/v5-compat.less +176 -0
  161. data/node_modules/fork-awesome/less/variables.less +890 -0
  162. data/node_modules/fork-awesome/package.json +49 -0
  163. data/node_modules/fork-awesome/scss/_animated.scss +34 -0
  164. data/node_modules/fork-awesome/scss/_bordered-pulled.scss +25 -0
  165. data/node_modules/fork-awesome/scss/_core.scss +12 -0
  166. data/node_modules/fork-awesome/scss/_fixed-width.scss +6 -0
  167. data/node_modules/fork-awesome/scss/_functions.scss +11 -0
  168. data/node_modules/fork-awesome/scss/_icons.scss +879 -0
  169. data/node_modules/fork-awesome/scss/_larger.scss +13 -0
  170. data/node_modules/fork-awesome/scss/_list.scss +19 -0
  171. data/node_modules/fork-awesome/scss/_mixins.scss +60 -0
  172. data/node_modules/fork-awesome/scss/_path.scss +15 -0
  173. data/node_modules/fork-awesome/scss/_rotated-flipped.scss +20 -0
  174. data/node_modules/fork-awesome/scss/_screen-reader.scss +5 -0
  175. data/node_modules/fork-awesome/scss/_stacked.scss +20 -0
  176. data/node_modules/fork-awesome/scss/_variables.scss +890 -0
  177. data/node_modules/fork-awesome/scss/fork-awesome.scss +28 -0
  178. data/package.json +32 -0
  179. data/papers.md +4 -0
  180. data/projects.md +4 -0
  181. data/resume.md +4 -0
  182. data/screenshot.png +0 -0
  183. data/scripts/build.sh +10 -0
  184. data/scripts/install.sh +4 -0
  185. data/scripts/validate.rb +28 -0
  186. data/vitrina.gemspec +23 -0
  187. metadata +187 -2
@@ -0,0 +1,77 @@
1
+ // Colors
2
+
3
+ $black: hsl(0, 0%, 4%) !default
4
+ $black-bis: hsl(0, 0%, 7%) !default
5
+ $black-ter: hsl(0, 0%, 14%) !default
6
+
7
+ $grey-darker: hsl(0, 0%, 21%) !default
8
+ $grey-dark: hsl(0, 0%, 29%) !default
9
+ $grey: hsl(0, 0%, 48%) !default
10
+ $grey-light: hsl(0, 0%, 71%) !default
11
+ $grey-lighter: hsl(0, 0%, 86%) !default
12
+ $grey-lightest: hsl(0, 0%, 93%) !default
13
+
14
+ $white-ter: hsl(0, 0%, 96%) !default
15
+ $white-bis: hsl(0, 0%, 98%) !default
16
+ $white: hsl(0, 0%, 100%) !default
17
+
18
+ $orange: hsl(14, 100%, 53%) !default
19
+ $yellow: hsl(48, 100%, 67%) !default
20
+ $green: hsl(141, 53%, 53%) !default
21
+ $turquoise: hsl(171, 100%, 41%) !default
22
+ $cyan: hsl(204, 71%, 53%) !default
23
+ $blue: hsl(217, 71%, 53%) !default
24
+ $purple: hsl(271, 100%, 71%) !default
25
+ $red: hsl(348, 86%, 61%) !default
26
+
27
+ // Typography
28
+
29
+ $family-sans-serif: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !default
30
+ $family-monospace: monospace !default
31
+ $render-mode: optimizeLegibility !default
32
+
33
+ $size-1: 3rem !default
34
+ $size-2: 2.5rem !default
35
+ $size-3: 2rem !default
36
+ $size-4: 1.5rem !default
37
+ $size-5: 1.25rem !default
38
+ $size-6: 1rem !default
39
+ $size-7: 0.75rem !default
40
+
41
+ $weight-light: 300 !default
42
+ $weight-normal: 400 !default
43
+ $weight-medium: 500 !default
44
+ $weight-semibold: 600 !default
45
+ $weight-bold: 700 !default
46
+
47
+ // Spacing
48
+
49
+ $block-spacing: 1.5rem !default
50
+
51
+ // Responsiveness
52
+
53
+ // The container horizontal gap, which acts as the offset for breakpoints
54
+ $gap: 32px !default
55
+ // 960, 1152, and 1344 have been chosen because they are divisible by both 12 and 16
56
+ $tablet: 769px !default
57
+ // 960px container + 4rem
58
+ $desktop: 960px + (2 * $gap) !default
59
+ // 1152px container + 4rem
60
+ $widescreen: 1152px + (2 * $gap) !default
61
+ $widescreen-enabled: true !default
62
+ // 1344px container + 4rem
63
+ $fullhd: 1344px + (2 * $gap) !default
64
+ $fullhd-enabled: true !default
65
+
66
+ // Miscellaneous
67
+
68
+ $easing: ease-out !default
69
+ $radius-small: 2px !default
70
+ $radius: 4px !default
71
+ $radius-large: 6px !default
72
+ $radius-rounded: 290486px !default
73
+ $speed: 86ms !default
74
+
75
+ // Flags
76
+
77
+ $variable-columns: true !default
@@ -0,0 +1,261 @@
1
+ @import "initial-variables"
2
+
3
+ =clearfix
4
+ &::after
5
+ clear: both
6
+ content: " "
7
+ display: table
8
+
9
+ =center($width, $height: 0)
10
+ position: absolute
11
+ @if $height != 0
12
+ left: calc(50% - (#{$width} / 2))
13
+ top: calc(50% - (#{$height} / 2))
14
+ @else
15
+ left: calc(50% - (#{$width} / 2))
16
+ top: calc(50% - (#{$width} / 2))
17
+
18
+ =fa($size, $dimensions)
19
+ display: inline-block
20
+ font-size: $size
21
+ height: $dimensions
22
+ line-height: $dimensions
23
+ text-align: center
24
+ vertical-align: top
25
+ width: $dimensions
26
+
27
+ =hamburger($dimensions)
28
+ cursor: pointer
29
+ display: block
30
+ height: $dimensions
31
+ position: relative
32
+ width: $dimensions
33
+ span
34
+ background-color: currentColor
35
+ display: block
36
+ height: 1px
37
+ left: calc(50% - 8px)
38
+ position: absolute
39
+ transform-origin: center
40
+ transition-duration: $speed
41
+ transition-property: background-color, opacity, transform
42
+ transition-timing-function: $easing
43
+ width: 16px
44
+ &:nth-child(1)
45
+ top: calc(50% - 6px)
46
+ &:nth-child(2)
47
+ top: calc(50% - 1px)
48
+ &:nth-child(3)
49
+ top: calc(50% + 4px)
50
+ &:hover
51
+ background-color: bulmaRgba(black, 0.05)
52
+ // Modifers
53
+ &.is-active
54
+ span
55
+ &:nth-child(1)
56
+ transform: translateY(5px) rotate(45deg)
57
+ &:nth-child(2)
58
+ opacity: 0
59
+ &:nth-child(3)
60
+ transform: translateY(-5px) rotate(-45deg)
61
+
62
+ =overflow-touch
63
+ -webkit-overflow-scrolling: touch
64
+
65
+ =placeholder
66
+ $placeholders: ':-moz' ':-webkit-input' '-moz' '-ms-input'
67
+ @each $placeholder in $placeholders
68
+ &:#{$placeholder}-placeholder
69
+ @content
70
+
71
+ // Responsiveness
72
+
73
+ =from($device)
74
+ @media screen and (min-width: $device)
75
+ @content
76
+
77
+ =until($device)
78
+ @media screen and (max-width: $device - 1px)
79
+ @content
80
+
81
+ =mobile
82
+ @media screen and (max-width: $tablet - 1px)
83
+ @content
84
+
85
+ =tablet
86
+ @media screen and (min-width: $tablet), print
87
+ @content
88
+
89
+ =tablet-only
90
+ @media screen and (min-width: $tablet) and (max-width: $desktop - 1px)
91
+ @content
92
+
93
+ =touch
94
+ @media screen and (max-width: $desktop - 1px)
95
+ @content
96
+
97
+ =desktop
98
+ @media screen and (min-width: $desktop)
99
+ @content
100
+
101
+ =desktop-only
102
+ @if $widescreen-enabled
103
+ @media screen and (min-width: $desktop) and (max-width: $widescreen - 1px)
104
+ @content
105
+
106
+ =until-widescreen
107
+ @if $widescreen-enabled
108
+ @media screen and (max-width: $widescreen - 1px)
109
+ @content
110
+
111
+ =widescreen
112
+ @if $widescreen-enabled
113
+ @media screen and (min-width: $widescreen)
114
+ @content
115
+
116
+ =widescreen-only
117
+ @if $widescreen-enabled and $fullhd-enabled
118
+ @media screen and (min-width: $widescreen) and (max-width: $fullhd - 1px)
119
+ @content
120
+
121
+ =until-fullhd
122
+ @if $fullhd-enabled
123
+ @media screen and (max-width: $fullhd - 1px)
124
+ @content
125
+
126
+ =fullhd
127
+ @if $fullhd-enabled
128
+ @media screen and (min-width: $fullhd)
129
+ @content
130
+
131
+ // Placeholders
132
+
133
+ =unselectable
134
+ -webkit-touch-callout: none
135
+ -webkit-user-select: none
136
+ -moz-user-select: none
137
+ -ms-user-select: none
138
+ user-select: none
139
+
140
+ %unselectable
141
+ +unselectable
142
+
143
+ =arrow($color: transparent)
144
+ border: 3px solid $color
145
+ border-radius: 2px
146
+ border-right: 0
147
+ border-top: 0
148
+ content: " "
149
+ display: block
150
+ height: 0.625em
151
+ margin-top: -0.4375em
152
+ pointer-events: none
153
+ position: absolute
154
+ top: 50%
155
+ transform: rotate(-45deg)
156
+ transform-origin: center
157
+ width: 0.625em
158
+
159
+ %arrow
160
+ +arrow
161
+
162
+ =block($spacing: $block-spacing)
163
+ &:not(:last-child)
164
+ margin-bottom: $spacing
165
+
166
+ %block
167
+ +block
168
+
169
+ =delete
170
+ @extend %unselectable
171
+ -moz-appearance: none
172
+ -webkit-appearance: none
173
+ background-color: bulmaRgba($scheme-invert, 0.2)
174
+ border: none
175
+ border-radius: $radius-rounded
176
+ cursor: pointer
177
+ pointer-events: auto
178
+ display: inline-block
179
+ flex-grow: 0
180
+ flex-shrink: 0
181
+ font-size: 0
182
+ height: 20px
183
+ max-height: 20px
184
+ max-width: 20px
185
+ min-height: 20px
186
+ min-width: 20px
187
+ outline: none
188
+ position: relative
189
+ vertical-align: top
190
+ width: 20px
191
+ &::before,
192
+ &::after
193
+ background-color: $scheme-main
194
+ content: ""
195
+ display: block
196
+ left: 50%
197
+ position: absolute
198
+ top: 50%
199
+ transform: translateX(-50%) translateY(-50%) rotate(45deg)
200
+ transform-origin: center center
201
+ &::before
202
+ height: 2px
203
+ width: 50%
204
+ &::after
205
+ height: 50%
206
+ width: 2px
207
+ &:hover,
208
+ &:focus
209
+ background-color: bulmaRgba($scheme-invert, 0.3)
210
+ &:active
211
+ background-color: bulmaRgba($scheme-invert, 0.4)
212
+ // Sizes
213
+ &.is-small
214
+ height: 16px
215
+ max-height: 16px
216
+ max-width: 16px
217
+ min-height: 16px
218
+ min-width: 16px
219
+ width: 16px
220
+ &.is-medium
221
+ height: 24px
222
+ max-height: 24px
223
+ max-width: 24px
224
+ min-height: 24px
225
+ min-width: 24px
226
+ width: 24px
227
+ &.is-large
228
+ height: 32px
229
+ max-height: 32px
230
+ max-width: 32px
231
+ min-height: 32px
232
+ min-width: 32px
233
+ width: 32px
234
+
235
+ %delete
236
+ +delete
237
+
238
+ =loader
239
+ animation: spinAround 500ms infinite linear
240
+ border: 2px solid $grey-lighter
241
+ border-radius: $radius-rounded
242
+ border-right-color: transparent
243
+ border-top-color: transparent
244
+ content: ""
245
+ display: block
246
+ height: 1em
247
+ position: relative
248
+ width: 1em
249
+
250
+ %loader
251
+ +loader
252
+
253
+ =overlay($offset: 0)
254
+ bottom: $offset
255
+ left: $offset
256
+ position: absolute
257
+ right: $offset
258
+ top: $offset
259
+
260
+ %overlay
261
+ +overlay
@@ -0,0 +1,91 @@
1
+ # Changelog
2
+
3
+ ## Changelog of Fork awesome
4
+ - v1.1.6
5
+ - Added icons: file-epub, python, archlinux, pleroma, unsplash, hackster, spell-check, moon, sun, f-droid, and biometric
6
+ - Some documentation correction and augmentation, mostly in the README
7
+ - Gave access to the @all-contributors [bot] to the repo for easier contributor list management
8
+ - Added a plugin to automatically update the Contributors badge when building the documentation
9
+ - Added an official domain name for the project: https://forkaweso.me
10
+ - v1.1.5
11
+ - Just bumped the version number to trigger an automated deploy
12
+ - v1.1.4
13
+ - Added icons: Gitea, AT&T, Digitalocean, C (language), Wikidata, Emby, Jirafeau, Hashnode, DevTo, Pixelfed, Matrix, Inkscape, Syncthing.
14
+ - v1.1.3
15
+ - Added icons: Syncthing and Inkscape
16
+ - Fixed sizing with PHP icon
17
+ - Added the `sync` alias to the refresh icon
18
+ - v1.1.2
19
+ - Adds a `v5-compat.css` file in order to ease transition from Font Awesome v5 to Frok Awesome [#112](https://github.com/ForkAwesome/Fork-Awesome/issues/112)
20
+ - Adds full MIT license in the CSS, LESS and SCSS headers [#113](https://github.com/ForkAwesome/Fork-Awesome/issues/113)
21
+ - Ignoring some unnecessary files that were distributed with the CDN
22
+ - v1.1.1
23
+ - Adding a CI pipeline with Travis.
24
+ - Fixes bell and bell-o icons who were switched up [#88](https://github.com/ForkAwesome/Fork-Awesome/issues/88)
25
+ - Add a mention in the documentation that the SIL-OFL also applies to SVG glyphs [#62](https://github.com/ForkAwesome/Fork-Awesome/issues/62)
26
+ - v1.1.0
27
+ - Upgrade of build tools to latest versions ( Jekyll & svgo mainly)
28
+ - Change of Globe icon to be more world friendly
29
+ - Adds more icons: more globes (east & west views), zotero, nodejs, nextcloud, hackaday, laravel, signal, gnupg, php, ffmpeg amd joplin.
30
+ - v1.0.11
31
+ - Adds icons: Dogmazic, React, Tipeee, Mastodon Square.
32
+ - Fix variable names for generated SCSS variables.
33
+ - Fix old reference to Font Awesome in SCSS variables.
34
+ - v1.0.10
35
+ - Adding a few icons: Debian, Messenger, Freedombox
36
+ - v1.0.9
37
+ - Adding icons for Archive.org & Xmpp
38
+ - Improving icons for QRcode & Barcode
39
+ - v1.0.8
40
+ - Bumping just for jsDelivr because it won't accept an array as default files.
41
+ - v1.0.7
42
+ - Prepares for jsDelivr CDN distribution
43
+ - Adds sourcemap for min version of CSS (jsDelivr requirement)
44
+ - Updates Medium icon to latest branding + adds Medium square icon.
45
+ - v1.0.6
46
+ - Removes Twitter js tracker in the doc and add Disapora* and Mastodon share button (Distributopia)
47
+ - Adding a few more icons: Shaarli, Key (modern)
48
+ - v1.0.5
49
+ - Solves a bug where CSS, LESS & SCSSΒ folder were not updated
50
+ - v1.0.4
51
+ - Some build process changes
52
+ - Adds a SVG template file in src/icons for better icon placement and sizing comparison
53
+ - Adds Discord, Patreon, Snowdrift, Ethereum, ActivityPub and Keybase icons
54
+ - v1.0.3
55
+ - Adding Artstation icon [#19](https://github.com/ForkAwesome/Fork-Awesome/pull/19)
56
+ - Adding an SVGΒ Inkscape template for icon sizing and positioning
57
+ - v1.0.2
58
+ - Solves a Makefile bug that packaged files that were not updated.
59
+ - Correction of typos in the documentation.
60
+ - v1.0.1
61
+ βˆ’ Mainly solving a packaging bug.
62
+ - v1.0.0
63
+ - Forked from Font Awesome 4.7.0. Rename of the project to Fork Awesome.
64
+ - Cleaned up the doc and removed 3rd party trackers and advertisement from documentation.
65
+ - Extracted all the icons from the SVG webfont into individual SVG files.
66
+ - Added 12 new icons.
67
+ - Removed 3 imaginary brand icons.
68
+ - Added FontCustom as a build tool to create the webfonts.
69
+
70
+ ## Changelog of Font Awesome
71
+ - [v4.7.0 GitHub pull request](https://github.com/FortAwesome/Font-Awesome/pull/10012)
72
+ - [v4.6.3 GitHub pull request](https://github.com/FortAwesome/Font-Awesome/pull/9189)
73
+ - [v4.6.2 GitHub pull request](https://github.com/FortAwesome/Font-Awesome/pull/9117)
74
+ - [v4.6.1 GitHub pull request](https://github.com/FortAwesome/Font-Awesome/pull/8962)
75
+ - [v4.6.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?q=milestone%3A4.6.0+is%3Aclosed)
76
+ - [v4.5.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?q=milestone%3A4.5.0+is%3Aclosed)
77
+ - [v4.4.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?q=milestone%3A4.4.0+is%3Aclosed)
78
+ - [v4.3.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?q=milestone%3A4.3.0+is%3Aclosed)
79
+ - [v4.2.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=12&page=1&state=closed)
80
+ - [v4.1.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=6&page=1&state=closed)
81
+ - [v4.0.3 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=9&page=1&state=closed)
82
+ - [v4.0.2 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=8&page=1&state=closed)
83
+ - [v4.0.1 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=7&page=1&state=closed)
84
+ - [v4.0.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=2&page=1&state=closed)
85
+ - [v3.2.1 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=5&page=1&state=closed)
86
+ - [v3.2.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=3&page=1&state=closed)
87
+ - [v3.1.1 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=4&page=1&state=closed)
88
+ - v3.1.0 - Added 54 icons, icon stacking styles, flipping and rotating icons, removed Sass support
89
+ - v3.0.2 - much improved rendering and alignment in IE7
90
+ - v3.0.1 - much improved rendering in webkit, various bug fixes
91
+ - v3.0.0 - all icons redesigned from scratch, optimized for Bootstrap's 14px default
@@ -0,0 +1,31 @@
1
+ # ForkAwesome Community
2
+
3
+ This is a list of people who made this project possible, whether they contributed to FontAwesome before or to ForkAwesome since. We are trying hard to recognize all types of contributions. So if you feel you have been left out and should be mentioned here, please accept our apology and [write us a message](https://github.com/ForkAwesome/Fork-Awesome/issues/new) about it. We'll fix this as soon as possible.
4
+
5
+ ## Contributors
6
+
7
+ Thanks goes to these wonderful people ([emoji key](https://github.com/kentcdodds/all-contributors#emoji-key)):
8
+
9
+ <!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
10
+ <!-- prettier-ignore -->
11
+ | [<img src="https://avatars0.githubusercontent.com/u/1076721?v=4" width="50px;" alt="Dave Gandy"/><br /><sub><b>Dave Gandy</b></sub>](https://github.com/davegandy)<br />[πŸ’»](https://github.com/ForkAwesome/Fork-Awesome/commits?author=davegandy "Code") [🎨](#design-davegandy "Design") [πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=davegandy "Documentation") | [<img src="https://avatars3.githubusercontent.com/u/163763?v=4" width="50px;" alt="Brian Talbot"/><br /><sub><b>Brian Talbot</b></sub>](http://www.talbs.me)<br />[πŸ’»](https://github.com/ForkAwesome/Fork-Awesome/commits?author=talbs "Code") | [<img src="https://avatars1.githubusercontent.com/u/249366?v=4" width="50px;" alt="Travis Chase"/><br /><sub><b>Travis Chase</b></sub>](https://github.com/supercodepoet)<br />[πŸ’»](https://github.com/ForkAwesome/Fork-Awesome/commits?author=supercodepoet "Code") | [<img src="https://avatars2.githubusercontent.com/u/132895?v=4" width="50px;" alt="Rob Madole"/><br /><sub><b>Rob Madole</b></sub>](http://robmadole.com)<br />[πŸ’»](https://github.com/ForkAwesome/Fork-Awesome/commits?author=robmadole "Code") | [<img src="https://avatars2.githubusercontent.com/u/556268?v=4" width="50px;" alt="Geremia Taglialatela"/><br /><sub><b>Geremia Taglialatela</b></sub>](https://github.com/tagliala)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=tagliala "Documentation") [πŸ’¬](#question-tagliala "Answering Questions") | [<img src="https://avatars1.githubusercontent.com/u/81942?v=4" width="50px;" alt="Mathias Bynens"/><br /><sub><b>Mathias Bynens</b></sub>](https://mathiasbynens.be/)<br />[πŸ’»](https://github.com/ForkAwesome/Fork-Awesome/commits?author=mathiasbynens "Code") | [<img src="https://avatars0.githubusercontent.com/u/6705160?v=4" width="50px;" alt="William Boman"/><br /><sub><b>William Boman</b></sub>](https://redwill.se/)<br />[πŸ’»](https://github.com/ForkAwesome/Fork-Awesome/commits?author=williamboman "Code") |
12
+ | :---: | :---: | :---: | :---: | :---: | :---: | :---: |
13
+ | [<img src="https://avatars1.githubusercontent.com/u/90316?v=4" width="50px;" alt="Matthias Kretschmann"/><br /><sub><b>Matthias Kretschmann</b></sub>](https://kretschmann.io)<br />[πŸ’»](https://github.com/ForkAwesome/Fork-Awesome/commits?author=kremalicious "Code") | [<img src="https://avatars3.githubusercontent.com/u/1321596?v=4" width="50px;" alt="Maxime Fabre"/><br /><sub><b>Maxime Fabre</b></sub>](https://about.me/anahkiasen)<br />[πŸ’»](https://github.com/ForkAwesome/Fork-Awesome/commits?author=Anahkiasen "Code") | [<img src="https://avatars1.githubusercontent.com/u/895831?v=4" width="50px;" alt="Patrick H. Lauke"/><br /><sub><b>Patrick H. Lauke</b></sub>](http://www.splintered.co.uk)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=patrickhlauke "Documentation") | [<img src="https://avatars1.githubusercontent.com/u/1438457?v=4" width="50px;" alt="Dan Stroot"/><br /><sub><b>Dan Stroot</b></sub>](https://danstroot.com)<br />[πŸ’»](https://github.com/ForkAwesome/Fork-Awesome/commits?author=dstroot "Code") | [<img src="https://avatars0.githubusercontent.com/u/29971?v=4" width="50px;" alt="Jason Porter"/><br /><sub><b>Jason Porter</b></sub>](http://lightguard-jp.blogspot.com)<br />[πŸ’»](https://github.com/ForkAwesome/Fork-Awesome/commits?author=LightGuard "Code") | [<img src="https://avatars2.githubusercontent.com/u/1308419?v=4" width="50px;" alt="Tom Byrer"/><br /><sub><b>Tom Byrer</b></sub>](https://github.com/tomByrer)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=tomByrer "Documentation") | [<img src="https://avatars3.githubusercontent.com/u/381393?v=4" width="50px;" alt="Gregory Koberger"/><br /><sub><b>Gregory Koberger</b></sub>](http://readme.io)<br />[πŸ’»](https://github.com/ForkAwesome/Fork-Awesome/commits?author=gkoberger "Code") |
14
+ | [<img src="https://avatars1.githubusercontent.com/u/947110?v=4" width="50px;" alt="Kevin Kirsche"/><br /><sub><b>Kevin Kirsche</b></sub>](https://kevinkirsche.com)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=kkirsche "Documentation") | [<img src="https://avatars2.githubusercontent.com/u/81561?v=4" width="50px;" alt="Marcus Bointon"/><br /><sub><b>Marcus Bointon</b></sub>](http://marcus.bointon.com/)<br />[πŸ’»](https://github.com/ForkAwesome/Fork-Awesome/commits?author=Synchro "Code") | [<img src="https://avatars2.githubusercontent.com/u/2371386?v=4" width="50px;" alt="njb_said"/><br /><sub><b>njb_said</b></sub>](https://github.com/njb-said)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=njb-said "Documentation") | [<img src="https://avatars1.githubusercontent.com/u/953092?v=4" width="50px;" alt="AJ Acevedo"/><br /><sub><b>AJ Acevedo</b></sub>](http://ajacevedo.com)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=AJ-Acevedo "Documentation") | [<img src="https://avatars2.githubusercontent.com/u/58669?v=4" width="50px;" alt="Aarni Koskela"/><br /><sub><b>Aarni Koskela</b></sub>](https://akx.github.io/)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=akx "Documentation") | [<img src="https://avatars1.githubusercontent.com/u/3806?v=4" width="50px;" alt="scudco"/><br /><sub><b>scudco</b></sub>](https://github.com/scudco)<br />[πŸ”§](#tool-scudco "Tools") | [<img src="https://avatars1.githubusercontent.com/u/621062?v=4" width="50px;" alt="Alfio Emanuele"/><br /><sub><b>Alfio Emanuele</b></sub>](https://alfioemanuele.io)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=AlfioEmanueleFresta "Documentation") |
15
+ | [<img src="https://avatars3.githubusercontent.com/u/357623?v=4" width="50px;" alt="Andy Carter"/><br /><sub><b>Andy Carter</b></sub>](http://andy-carter.com)<br />[πŸ’»](https://github.com/ForkAwesome/Fork-Awesome/commits?author=drmonkeyninja "Code") | [<img src="https://avatars2.githubusercontent.com/u/237005?v=4" width="50px;" alt="Andy Freeland"/><br /><sub><b>Andy Freeland</b></sub>](https://andyfreeland.net)<br />[πŸ›](https://github.com/ForkAwesome/Fork-Awesome/issues?q=author%3Arouge8 "Bug reports") [πŸ’»](https://github.com/ForkAwesome/Fork-Awesome/commits?author=rouge8 "Code") | [<img src="https://avatars1.githubusercontent.com/u/1490347?v=4" width="50px;" alt="AntΓ©rio Vieira"/><br /><sub><b>AntΓ©rio Vieira</b></sub>](http://owen.com.br)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=anteriovieira "Documentation") | [<img src="https://avatars1.githubusercontent.com/u/8832594?v=4" width="50px;" alt="Ararat"/><br /><sub><b>Ararat</b></sub>](https://github.com/araratm)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=araratm "Documentation") | [<img src="https://avatars2.githubusercontent.com/u/1879785?v=4" width="50px;" alt="Ben Gadbois"/><br /><sub><b>Ben Gadbois</b></sub>](https://github.com/bengadbois)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=bengadbois "Documentation") | [<img src="https://avatars0.githubusercontent.com/u/216878?v=4" width="50px;" alt="Ben Thomas"/><br /><sub><b>Ben Thomas</b></sub>](https://github.com/wazoo)<br />[πŸ’»](https://github.com/ForkAwesome/Fork-Awesome/commits?author=wazoo "Code") | [<img src="https://avatars0.githubusercontent.com/u/1615761?v=4" width="50px;" alt="Brad Buchanan"/><br /><sub><b>Brad Buchanan</b></sub>](http://bradleycbuchanan.com)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=islemaster "Documentation") |
16
+ | [<img src="https://avatars0.githubusercontent.com/u/3743423?v=4" width="50px;" alt="Brandon SarΓ "/><br /><sub><b>Brandon SarΓ </b></sub>](http://bsara.pro)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=bsara "Documentation") | [<img src="https://avatars0.githubusercontent.com/u/4213522?v=4" width="50px;" alt="Bryan Channon"/><br /><sub><b>Bryan Channon</b></sub>](http://vuii.co.uk)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=Vusys "Documentation") | [<img src="https://avatars3.githubusercontent.com/u/496987?v=4" width="50px;" alt="CauΓͺ ThenΓ³rio"/><br /><sub><b>CauΓͺ ThenΓ³rio</b></sub>](https://github.com/cauethenorio)<br />[πŸ’»](https://github.com/ForkAwesome/Fork-Awesome/commits?author=cauethenorio "Code") | [<img src="https://avatars1.githubusercontent.com/u/5069304?v=4" width="50px;" alt="Chip Thien"/><br /><sub><b>Chip Thien</b></sub>](https://github.com/MacroChip)<br />[πŸ’»](https://github.com/ForkAwesome/Fork-Awesome/commits?author=MacroChip "Code") | [<img src="https://avatars0.githubusercontent.com/u/610237?v=4" width="50px;" alt="Dane Hurtubise"/><br /><sub><b>Dane Hurtubise</b></sub>](http://hurtubise.me)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=hurtubise "Documentation") | [<img src="https://avatars2.githubusercontent.com/u/59074?v=4" width="50px;" alt="Dannii Willis"/><br /><sub><b>Dannii Willis</b></sub>](https://curiousdannii.github.io/)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=curiousdannii "Documentation") | [<img src="https://avatars1.githubusercontent.com/u/32717?v=4" width="50px;" alt="DarΓ­o HereΓ±ΓΊ"/><br /><sub><b>DarΓ­o HereΓ±ΓΊ</b></sub>](https://github.com/kant)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=kant "Documentation") |
17
+ | [<img src="https://avatars3.githubusercontent.com/u/36873?v=4" width="50px;" alt="David Celis"/><br /><sub><b>David Celis</b></sub>](https://davidcel.is/)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=davidcelis "Documentation") | [<img src="https://avatars3.githubusercontent.com/u/207171?v=4" width="50px;" alt="Derek Myers"/><br /><sub><b>Derek Myers</b></sub>](http://derekmyers.com)<br />[πŸ›](https://github.com/ForkAwesome/Fork-Awesome/issues?q=author%3Admyers "Bug reports") [πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=dmyers "Documentation") | [<img src="https://avatars0.githubusercontent.com/u/53707?v=4" width="50px;" alt="Doug Bell"/><br /><sub><b>Doug Bell</b></sub>](http://preaction.me)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=preaction "Documentation") | [<img src="https://avatars0.githubusercontent.com/u/461752?v=4" width="50px;" alt="Eelke Blok"/><br /><sub><b>Eelke Blok</b></sub>](http://www.blokspeed.net)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=eelkeblok "Documentation") | [<img src="https://avatars1.githubusercontent.com/u/199095?v=4" width="50px;" alt="Elan RuusamΓ€e"/><br /><sub><b>Elan RuusamΓ€e</b></sub>](https://github.com/glensc)<br />[πŸ’»](https://github.com/ForkAwesome/Fork-Awesome/commits?author=glensc "Code") | [<img src="https://avatars3.githubusercontent.com/u/634191?v=4" width="50px;" alt="Eric Bailey"/><br /><sub><b>Eric Bailey</b></sub>](https://ericwbailey.design/)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=ericwbailey "Documentation") | [<img src="https://avatars0.githubusercontent.com/u/13179128?v=4" width="50px;" alt="Ferhat ElmasgΓΌneş"/><br /><sub><b>Ferhat ElmasgΓΌneş</b></sub>](http://ferhat.elmasgunes.net)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=ferhate "Documentation") |
18
+ | [<img src="https://avatars0.githubusercontent.com/u/100959?v=4" width="50px;" alt="FrΓ©dΓ©ric Junod"/><br /><sub><b>FrΓ©dΓ©ric Junod</b></sub>](https://github.com/fredj)<br />[πŸ›](https://github.com/ForkAwesome/Fork-Awesome/issues?q=author%3Afredj "Bug reports") [πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=fredj "Documentation") | [<img src="https://avatars1.githubusercontent.com/u/2829600?v=4" width="50px;" alt="Graham Campbell"/><br /><sub><b>Graham Campbell</b></sub>](https://gjcampbell.co.uk/)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=GrahamCampbell "Documentation") | [<img src="https://avatars2.githubusercontent.com/u/1072751?v=4" width="50px;" alt="Graham Walters"/><br /><sub><b>Graham Walters</b></sub>](https://grahamwalters.me)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=GrahamWalters "Documentation") | [<img src="https://avatars2.githubusercontent.com/u/816859?v=4" width="50px;" alt="Hendrik Kleinwaechter"/><br /><sub><b>Hendrik Kleinwaechter</b></sub>](http://www.tripl.de)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=hendricius "Documentation") | [<img src="https://avatars3.githubusercontent.com/u/9744226?v=4" width="50px;" alt="IKOURFALN Slimane"/><br /><sub><b>IKOURFALN Slimane</b></sub>](https://github.com/ikourfaln)<br />[πŸ›](https://github.com/ForkAwesome/Fork-Awesome/issues?q=author%3Aikourfaln "Bug reports") [πŸ’»](https://github.com/ForkAwesome/Fork-Awesome/commits?author=ikourfaln "Code") | [<img src="https://avatars2.githubusercontent.com/u/141546?v=4" width="50px;" alt="Jakub Wilk"/><br /><sub><b>Jakub Wilk</b></sub>](https://github.com/jwilk)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=jwilk "Documentation") | [<img src="https://avatars0.githubusercontent.com/u/242337?v=4" width="50px;" alt="James Harrison"/><br /><sub><b>James Harrison</b></sub>](https://github.com/jjlharrison)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=jjlharrison "Documentation") |
19
+ | [<img src="https://avatars3.githubusercontent.com/u/22308682?v=4" width="50px;" alt="James Johnston"/><br /><sub><b>James Johnston</b></sub>](https://github.com/james-johnston-thumbtack)<br />[πŸ’»](https://github.com/ForkAwesome/Fork-Awesome/commits?author=james-johnston-thumbtack "Code") | [<img src="https://avatars2.githubusercontent.com/u/3666887?v=4" width="50px;" alt="Jan HoΕ™ava"/><br /><sub><b>Jan HoΕ™ava</b></sub>](http://honzi.cz)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=honzi "Documentation") | [<img src="https://avatars3.githubusercontent.com/u/112170?v=4" width="50px;" alt="Jared Forsyth"/><br /><sub><b>Jared Forsyth</b></sub>](http://jaredforsyth.com)<br />[πŸ’»](https://github.com/ForkAwesome/Fork-Awesome/commits?author=jaredly "Code") [πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=jaredly "Documentation") | [<img src="https://avatars0.githubusercontent.com/u/8212?v=4" width="50px;" alt="Jerod Santo"/><br /><sub><b>Jerod Santo</b></sub>](https://jerodsanto.net)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=jerodsanto "Documentation") | [<img src="https://avatars3.githubusercontent.com/u/53273?v=4" width="50px;" alt="Jina Anne"/><br /><sub><b>Jina Anne</b></sub>](http://jina.me)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=jina "Documentation") | [<img src="https://avatars0.githubusercontent.com/u/429633?v=4" width="50px;" alt="JocelynDelalande"/><br /><sub><b>JocelynDelalande</b></sub>](http://jocelyn.delalande.fr)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=JocelynDelalande "Documentation") | [<img src="https://avatars0.githubusercontent.com/u/39089?v=4" width="50px;" alt="John Hope"/><br /><sub><b>John Hope</b></sub>](http://jhope.ie)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=JonMidhir "Documentation") |
20
+ | [<img src="https://avatars1.githubusercontent.com/u/13952477?v=4" width="50px;" alt="Josh Dean"/><br /><sub><b>Josh Dean</b></sub>](https://github.com/josdea)<br />[πŸ’»](https://github.com/ForkAwesome/Fork-Awesome/commits?author=josdea "Code") | [<img src="https://avatars1.githubusercontent.com/u/1188186?v=4" width="50px;" alt="Julian Krispel-Samsel"/><br /><sub><b>Julian Krispel-Samsel</b></sub>](http://reactrocket.com)<br />[πŸ’»](https://github.com/ForkAwesome/Fork-Awesome/commits?author=juliankrispel "Code") | [<img src="https://avatars3.githubusercontent.com/u/591833?v=4" width="50px;" alt="Lee Leathers"/><br /><sub><b>Lee Leathers</b></sub>](http://about.me/leeleathers)<br />[πŸ’»](https://github.com/ForkAwesome/Fork-Awesome/commits?author=theoreticaLee "Code") | [<img src="https://avatars2.githubusercontent.com/u/764854?v=4" width="50px;" alt="Leniel Macaferi"/><br /><sub><b>Leniel Macaferi</b></sub>](http://leniel.net)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=leniel "Documentation") | [<img src="https://avatars2.githubusercontent.com/u/572289?v=4" width="50px;" alt="Mladen ĐuriΔ‡"/><br /><sub><b>Mladen ĐuriΔ‡</b></sub>](http://macmladen.com)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=macmladen "Documentation") | [<img src="https://avatars0.githubusercontent.com/u/1043838?v=4" width="50px;" alt="Martin Seeler"/><br /><sub><b>Martin Seeler</b></sub>](http://www.martinseeler.com)<br />[πŸ’»](https://github.com/ForkAwesome/Fork-Awesome/commits?author=MartinSeeler "Code") | [<img src="https://avatars2.githubusercontent.com/u/321881?v=4" width="50px;" alt="Mateusz JagieΕ‚Ε‚o"/><br /><sub><b>Mateusz JagieΕ‚Ε‚o</b></sub>](http://sigo.pl/)<br />[πŸ›](https://github.com/ForkAwesome/Fork-Awesome/issues?q=author%3Asigo "Bug reports") |
21
+ | [<img src="https://avatars3.githubusercontent.com/u/736870?v=4" width="50px;" alt="Matt Smith"/><br /><sub><b>Matt Smith</b></sub>](http://www.softwarebymatt.com)<br />[πŸ›](https://github.com/ForkAwesome/Fork-Awesome/issues?q=author%3Amtscout6 "Bug reports") | [<img src="https://avatars2.githubusercontent.com/u/495549?v=4" width="50px;" alt="Matus Gura"/><br /><sub><b>Matus Gura</b></sub>](https://github.com/gurisko)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=gurisko "Documentation") | [<img src="https://avatars1.githubusercontent.com/u/117222?v=4" width="50px;" alt="Michael Angeles"/><br /><sub><b>Michael Angeles</b></sub>](https://github.com/jibbajabba)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=jibbajabba "Documentation") | [<img src="https://avatars3.githubusercontent.com/u/1246672?v=4" width="50px;" alt="Nielsen Ramon"/><br /><sub><b>Nielsen Ramon</b></sub>](http://nielsenramon.com/)<br />[πŸ’»](https://github.com/ForkAwesome/Fork-Awesome/commits?author=nielsenramon "Code") | [<img src="https://avatars1.githubusercontent.com/u/1944410?v=4" width="50px;" alt="Noah Doersing"/><br /><sub><b>Noah Doersing</b></sub>](https://hejnoah.com)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=doersino "Documentation") | [<img src="https://avatars1.githubusercontent.com/u/769142?v=4" width="50px;" alt="Paul Korzhyk"/><br /><sub><b>Paul Korzhyk</b></sub>](https://github.com/paulftw)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=paulftw "Documentation") | [<img src="https://avatars3.githubusercontent.com/u/3691490?v=4" width="50px;" alt="Peter Dave Hello"/><br /><sub><b>Peter Dave Hello</b></sub>](https://www.peterdavehello.org/)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=PeterDaveHello "Documentation") [πŸ“¦](#platform-PeterDaveHello "Packaging/porting to new platform") |
22
+ | [<img src="https://avatars2.githubusercontent.com/u/557895?v=4" width="50px;" alt="Peter deHaan"/><br /><sub><b>Peter deHaan</b></sub>](http://about.me/peterdehaan)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=pdehaan "Documentation") | [<img src="https://avatars2.githubusercontent.com/u/829526?v=4" width="50px;" alt="Prayag Verma "/><br /><sub><b>Prayag Verma </b></sub>](https://www.StylifyYourBlog.com/)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=pra85 "Documentation") | [<img src="https://avatars3.githubusercontent.com/u/15367484?v=4" width="50px;" alt="ReadmeCritic"/><br /><sub><b>ReadmeCritic</b></sub>](https://twitter.com/ReadmeCritic)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=ReadmeCritic "Documentation") | [<img src="https://avatars3.githubusercontent.com/u/1263856?v=4" width="50px;" alt="Ricardo Polo"/><br /><sub><b>Ricardo Polo</b></sub>](https://ricardopolo.co/)<br />[πŸ’»](https://github.com/ForkAwesome/Fork-Awesome/commits?author=ricardopolo "Code") | [<img src="https://avatars0.githubusercontent.com/u/740?v=4" width="50px;" alt="Ryan McGeary"/><br /><sub><b>Ryan McGeary</b></sub>](http://ryan.mcgeary.org)<br />[πŸ’»](https://github.com/ForkAwesome/Fork-Awesome/commits?author=rmm5t "Code") | [<img src="https://avatars1.githubusercontent.com/u/125998?v=4" width="50px;" alt="Ryan Riggin"/><br /><sub><b>Ryan Riggin</b></sub>](https://github.com/rriggin)<br />[πŸ’»](https://github.com/ForkAwesome/Fork-Awesome/commits?author=rriggin "Code") | [<img src="https://avatars2.githubusercontent.com/u/881590?v=4" width="50px;" alt="Ryan Senkbeil"/><br /><sub><b>Ryan Senkbeil</b></sub>](http://ryansenkbeil.com)<br />[πŸ’»](https://github.com/ForkAwesome/Fork-Awesome/commits?author=rsenk330 "Code") |
23
+ | [<img src="https://avatars1.githubusercontent.com/u/1961007?v=4" width="50px;" alt="Sarang Joshi"/><br /><sub><b>Sarang Joshi</b></sub>](http://sarangjo.github.io)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=sarangjo "Documentation") | [<img src="https://avatars3.githubusercontent.com/u/1044670?v=4" width="50px;" alt="Scott Cranfill"/><br /><sub><b>Scott Cranfill</b></sub>](https://twitter.com/scott_ish)<br />[πŸ’»](https://github.com/ForkAwesome/Fork-Awesome/commits?author=Scotchester "Code") | [<img src="https://avatars1.githubusercontent.com/u/4629794?v=4" width="50px;" alt="The Jared Wilcurt"/><br /><sub><b>The Jared Wilcurt</b></sub>](http://TheJaredWilcurt.com)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=TheJaredWilcurt "Documentation") | [<img src="https://avatars0.githubusercontent.com/u/308290?v=4" width="50px;" alt="Tim Guibord"/><br /><sub><b>Tim Guibord</b></sub>](https://github.com/tagCincy)<br />[πŸ’»](https://github.com/ForkAwesome/Fork-Awesome/commits?author=tagCincy "Code") | [<img src="https://avatars1.githubusercontent.com/u/1152567?v=4" width="50px;" alt="Vadim Mazur"/><br /><sub><b>Vadim Mazur</b></sub>](https://github.com/mazurva)<br />[πŸ’»](https://github.com/ForkAwesome/Fork-Awesome/commits?author=mazurva "Code") | [<img src="https://avatars2.githubusercontent.com/u/382608?v=4" width="50px;" alt="Vinson Chuong"/><br /><sub><b>Vinson Chuong</b></sub>](https://vinsonchuong.net)<br />[πŸ’»](https://github.com/ForkAwesome/Fork-Awesome/commits?author=vinsonchuong "Code") | [<img src="https://avatars3.githubusercontent.com/u/34144858?v=4" width="50px;" alt="grvrg"/><br /><sub><b>grvrg</b></sub>](https://github.com/grvrg)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=grvrg "Documentation") |
24
+ | [<img src="https://avatars0.githubusercontent.com/u/77144?v=4" width="50px;" alt="Luca Trevisani"/><br /><sub><b>Luca Trevisani</b></sub>](https://github.com/luke83)<br />[πŸ’»](https://github.com/ForkAwesome/Fork-Awesome/commits?author=luke83 "Code") | [<img src="https://avatars3.githubusercontent.com/u/1706326?v=4" width="50px;" alt="Álvaro"/><br /><sub><b>Álvaro</b></sub>](http://alvarotrigo.com)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=alvarotrigo "Documentation") | [<img src="https://avatars3.githubusercontent.com/u/192539?v=4" width="50px;" alt="Julien Deswaef"/><br /><sub><b>Julien Deswaef</b></sub>](http://xuv.be)<br />[πŸ’»](https://github.com/ForkAwesome/Fork-Awesome/commits?author=xuv "Code") [🎨](#design-xuv "Design") [πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=xuv "Documentation") [πŸ’¬](#question-xuv "Answering Questions") | [<img src="https://avatars0.githubusercontent.com/u/2192132?v=4" width="50px;" alt="n8willis"/><br /><sub><b>n8willis</b></sub>](https://github.com/n8willis)<br />[πŸ€”](#ideas-n8willis "Ideas, Planning, & Feedback") | [<img src="https://avatars0.githubusercontent.com/u/1779453?v=4" width="50px;" alt="B. Howell"/><br /><sub><b>B. Howell</b></sub>](http://wintermute.org/brendan)<br />[πŸ€”](#ideas-brendanhowell "Ideas, Planning, & Feedback") | [<img src="https://avatars2.githubusercontent.com/u/1197187?v=4" width="50px;" alt="Algot Runeman"/><br /><sub><b>Algot Runeman</b></sub>](http://runeman.org)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=algotruneman "Documentation") | [<img src="https://avatars0.githubusercontent.com/u/10608836?v=4" width="50px;" alt="Micah Ilbery"/><br /><sub><b>Micah Ilbery</b></sub>](https://micahilbery.com/)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=micahilbery "Documentation") [🎨](#design-micahilbery "Design") |
25
+ | [<img src="https://avatars3.githubusercontent.com/u/223439?v=4" width="50px;" alt="Helmut K. C. Tessarek"/><br /><sub><b>Helmut K. C. Tessarek</b></sub>](https://evermeet.cx)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=tessus "Documentation") [πŸ’»](https://github.com/ForkAwesome/Fork-Awesome/commits?author=tessus "Code") [🎨](#design-tessus "Design") | [<img src="https://avatars0.githubusercontent.com/u/3597194?v=4" width="50px;" alt="jeromelebleu"/><br /><sub><b>jeromelebleu</b></sub>](https://github.com/jeromelebleu)<br />[πŸ’»](https://github.com/ForkAwesome/Fork-Awesome/commits?author=jeromelebleu "Code") | [<img src="https://avatars3.githubusercontent.com/u/630909?v=4" width="50px;" alt="Kimberly Zick"/><br /><sub><b>Kimberly Zick</b></sub>](https://zick.kim/)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=rummik "Documentation") | [<img src="https://avatars2.githubusercontent.com/u/13441278?v=4" width="50px;" alt="nIQnutn"/><br /><sub><b>nIQnutn</b></sub>](http://blog.niqnutn.com/)<br />[πŸ“](#blog-nIQnutn "Blogposts") [πŸ”Œ](#plugin-nIQnutn "Plugin/utility libraries") | [<img src="https://avatars1.githubusercontent.com/u/4307697?v=4" width="50px;" alt="Jaime Leonardo Suncin Cruz"/><br /><sub><b>Jaime Leonardo Suncin Cruz</b></sub>](https://github.com/leosuncin)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=leosuncin "Documentation") | [<img src="https://avatars0.githubusercontent.com/u/1770233?v=4" width="50px;" alt="Juliette Foucaut"/><br /><sub><b>Juliette Foucaut</b></sub>](https://www.enkisoftware.com)<br />[πŸ”Œ](#plugin-juliettef "Plugin/utility libraries") | [<img src="https://avatars1.githubusercontent.com/u/6379091?v=4" width="50px;" alt="Dominik V. Salonen"/><br /><sub><b>Dominik V. Salonen</b></sub>](http://quad.moe/)<br />[πŸ“](#blog-QuadPiece "Blogposts") |
26
+ | [<img src="https://avatars2.githubusercontent.com/u/2706882?v=4" width="50px;" alt="Alexandre Viau"/><br /><sub><b>Alexandre Viau</b></sub>](https://alexandreviau.net)<br />[πŸ€”](#ideas-aviau "Ideas, Planning, & Feedback") [πŸ“¦](#platform-aviau "Packaging/porting to new platform") | [<img src="https://avatars3.githubusercontent.com/u/7915413?v=4" width="50px;" alt="Xesau"/><br /><sub><b>Xesau</b></sub>](http://xesau.eu/)<br />[πŸ›](https://github.com/ForkAwesome/Fork-Awesome/issues?q=author%3AXesau "Bug reports") | [<img src="https://avatars0.githubusercontent.com/u/649895?v=4" width="50px;" alt="Jan Hohner"/><br /><sub><b>Jan Hohner</b></sub>](https://janhohner.de)<br />[πŸ›](https://github.com/ForkAwesome/Fork-Awesome/issues?q=author%3Ajanhohner "Bug reports") | [<img src="https://avatars0.githubusercontent.com/u/261579?v=4" width="50px;" alt="Dave Crossland"/><br /><sub><b>Dave Crossland</b></sub>](http://fonts.google.com)<br />[πŸ‘€](#review-davelab6 "Reviewed Pull Requests") | [<img src="https://avatars0.githubusercontent.com/u/8260834?v=4" width="50px;" alt="Maximilian Berkmann"/><br /><sub><b>Maximilian Berkmann</b></sub>](http://maxcubing.wordpress.com)<br />[πŸ€”](#ideas-Berkmann18 "Ideas, Planning, & Feedback") | [<img src="https://avatars2.githubusercontent.com/u/616813?v=4" width="50px;" alt="Moritz Heiber"/><br /><sub><b>Moritz Heiber</b></sub>](https://heiber.im)<br />[πŸš‡](#infra-moritzheiber "Infrastructure (Hosting, Build-Tools, etc)") | [<img src="https://avatars1.githubusercontent.com/u/21787?v=4" width="50px;" alt="Wesley Moore"/><br /><sub><b>Wesley Moore</b></sub>](http://www.wezm.net/)<br />[πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=wezm "Documentation") |
27
+ | [<img src="https://avatars0.githubusercontent.com/u/377632?v=4" width="50px;" alt="John Kristensen"/><br /><sub><b>John Kristensen</b></sub>](http://www.jerrykan.com/)<br />[🎨](#design-jerrykan "Design") | [<img src="https://avatars3.githubusercontent.com/u/130971?v=4" width="50px;" alt="Marco"/><br /><sub><b>Marco</b></sub>](https://amusewiki.org)<br />[🎨](#design-melmothx "Design") | [<img src="https://avatars1.githubusercontent.com/u/658496?v=4" width="50px;" alt="Jared White"/><br /><sub><b>Jared White</b></sub>](https://whitefusion.io)<br />[πŸ–‹](#content-jaredcwhite "Content") | [<img src="https://avatars2.githubusercontent.com/u/478237?v=4" width="50px;" alt="Waldir Pimenta"/><br /><sub><b>Waldir Pimenta</b></sub>](http://waldyrious.github.io)<br />[πŸ–‹](#content-waldyrious "Content") | [<img src="https://avatars3.githubusercontent.com/u/1898673?v=4" width="50px;" alt="Vladimir Anokhin"/><br /><sub><b>Vladimir Anokhin</b></sub>](https://vanokhin.com/)<br />[πŸ’»](https://github.com/ForkAwesome/Fork-Awesome/commits?author=vanokhin "Code") | [<img src="https://avatars2.githubusercontent.com/u/1596934?v=4" width="50px;" alt="Maxime LathuiliΓ¨re"/><br /><sub><b>Maxime LathuiliΓ¨re</b></sub>](http://maxlath.eu)<br />[πŸ’»](https://github.com/ForkAwesome/Fork-Awesome/commits?author=maxlath "Code") | [<img src="https://avatars1.githubusercontent.com/u/8832594?v=4" width="50px;" alt="Ararat"/><br /><sub><b>Ararat</b></sub>](https://github.com/araratthehero)<br />[πŸ–‹](#content-araratthehero "Content") |
28
+ | [<img src="https://avatars2.githubusercontent.com/u/7890201?v=4" width="50px;" alt="Liaizon Wakest"/><br /><sub><b>Liaizon Wakest</b></sub>](http://wake.st)<br />[πŸ€”](#ideas-wakest "Ideas, Planning, & Feedback") | [<img src="https://avatars2.githubusercontent.com/u/1108409?v=4" width="50px;" alt="Ben Fedidat"/><br /><sub><b>Ben Fedidat</b></sub>](http://fedidat.com/)<br />[πŸ“](#blog-fedidat "Blogposts") | [<img src="https://avatars0.githubusercontent.com/u/954092?v=4" width="50px;" alt="Todd Eidson"/><br /><sub><b>Todd Eidson</b></sub>](https://www.eidson.info)<br />[πŸ€”](#ideas-eidsonator "Ideas, Planning, & Feedback") [πŸ“–](https://github.com/ForkAwesome/Fork-Awesome/commits?author=eidsonator "Documentation") [πŸ›](https://github.com/ForkAwesome/Fork-Awesome/issues?q=author%3Aeidsonator "Bug reports") [πŸ’»](https://github.com/ForkAwesome/Fork-Awesome/commits?author=eidsonator "Code") |
29
+ <!-- ALL-CONTRIBUTORS-LIST:END -->
30
+
31
+ This project follows the [all-contributors](https://github.com/kentcdodds/all-contributors) specification. Contributions of any kind welcome!