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,452 @@
1
+ /!\ The MIT License only applies to all CSS and LESS files in the following
2
+ directories: fork-awesome/css/, fork-awesome/less/, and fork-awesome/scss/.
3
+
4
+ MIT License
5
+
6
+ Copyright (c) 2018 Dave Gandy & Fork Awesome
7
+
8
+ Permission is hereby granted, free of charge, to any person obtaining a copy
9
+ of this software and associated documentation files (the "Software"), to deal
10
+ in the Software without restriction, including without limitation the rights
11
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12
+ copies of the Software, and to permit persons to whom the Software is
13
+ furnished to do so, subject to the following conditions:
14
+
15
+ The above copyright notice and this permission notice shall be included in all
16
+ copies or substantial portions of the Software.
17
+
18
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24
+ SOFTWARE.
25
+
26
+ *******************************************************************************
27
+
28
+ /!\ The Creative Commons Attribution 3.0 Unported License applies to all Fork
29
+ Awesome project files that are not a part of the Font or Code licenses.
30
+
31
+ Creative Commons Legal Code
32
+
33
+ Attribution 3.0 Unported
34
+
35
+ CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE
36
+ LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN
37
+ ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS
38
+ INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES
39
+ REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR
40
+ DAMAGES RESULTING FROM ITS USE.
41
+
42
+ License
43
+
44
+ THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE
45
+ COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY
46
+ COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS
47
+ AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.
48
+
49
+ BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE
50
+ TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY
51
+ BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS
52
+ CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND
53
+ CONDITIONS.
54
+
55
+ 1. Definitions
56
+
57
+ a. "Adaptation" means a work based upon the Work, or upon the Work and
58
+ other pre-existing works, such as a translation, adaptation,
59
+ derivative work, arrangement of music or other alterations of a
60
+ literary or artistic work, or phonogram or performance and includes
61
+ cinematographic adaptations or any other form in which the Work may be
62
+ recast, transformed, or adapted including in any form recognizably
63
+ derived from the original, except that a work that constitutes a
64
+ Collection will not be considered an Adaptation for the purpose of
65
+ this License. For the avoidance of doubt, where the Work is a musical
66
+ work, performance or phonogram, the synchronization of the Work in
67
+ timed-relation with a moving image ("synching") will be considered an
68
+ Adaptation for the purpose of this License.
69
+ b. "Collection" means a collection of literary or artistic works, such as
70
+ encyclopedias and anthologies, or performances, phonograms or
71
+ broadcasts, or other works or subject matter other than works listed
72
+ in Section 1(f) below, which, by reason of the selection and
73
+ arrangement of their contents, constitute intellectual creations, in
74
+ which the Work is included in its entirety in unmodified form along
75
+ with one or more other contributions, each constituting separate and
76
+ independent works in themselves, which together are assembled into a
77
+ collective whole. A work that constitutes a Collection will not be
78
+ considered an Adaptation (as defined above) for the purposes of this
79
+ License.
80
+ c. "Distribute" means to make available to the public the original and
81
+ copies of the Work or Adaptation, as appropriate, through sale or
82
+ other transfer of ownership.
83
+ d. "Licensor" means the individual, individuals, entity or entities that
84
+ offer(s) the Work under the terms of this License.
85
+ e. "Original Author" means, in the case of a literary or artistic work,
86
+ the individual, individuals, entity or entities who created the Work
87
+ or if no individual or entity can be identified, the publisher; and in
88
+ addition (i) in the case of a performance the actors, singers,
89
+ musicians, dancers, and other persons who act, sing, deliver, declaim,
90
+ play in, interpret or otherwise perform literary or artistic works or
91
+ expressions of folklore; (ii) in the case of a phonogram the producer
92
+ being the person or legal entity who first fixes the sounds of a
93
+ performance or other sounds; and, (iii) in the case of broadcasts, the
94
+ organization that transmits the broadcast.
95
+ f. "Work" means the literary and/or artistic work offered under the terms
96
+ of this License including without limitation any production in the
97
+ literary, scientific and artistic domain, whatever may be the mode or
98
+ form of its expression including digital form, such as a book,
99
+ pamphlet and other writing; a lecture, address, sermon or other work
100
+ of the same nature; a dramatic or dramatico-musical work; a
101
+ choreographic work or entertainment in dumb show; a musical
102
+ composition with or without words; a cinematographic work to which are
103
+ assimilated works expressed by a process analogous to cinematography;
104
+ a work of drawing, painting, architecture, sculpture, engraving or
105
+ lithography; a photographic work to which are assimilated works
106
+ expressed by a process analogous to photography; a work of applied
107
+ art; an illustration, map, plan, sketch or three-dimensional work
108
+ relative to geography, topography, architecture or science; a
109
+ performance; a broadcast; a phonogram; a compilation of data to the
110
+ extent it is protected as a copyrightable work; or a work performed by
111
+ a variety or circus performer to the extent it is not otherwise
112
+ considered a literary or artistic work.
113
+ g. "You" means an individual or entity exercising rights under this
114
+ License who has not previously violated the terms of this License with
115
+ respect to the Work, or who has received express permission from the
116
+ Licensor to exercise rights under this License despite a previous
117
+ violation.
118
+ h. "Publicly Perform" means to perform public recitations of the Work and
119
+ to communicate to the public those public recitations, by any means or
120
+ process, including by wire or wireless means or public digital
121
+ performances; to make available to the public Works in such a way that
122
+ members of the public may access these Works from a place and at a
123
+ place individually chosen by them; to perform the Work to the public
124
+ by any means or process and the communication to the public of the
125
+ performances of the Work, including by public digital performance; to
126
+ broadcast and rebroadcast the Work by any means including signs,
127
+ sounds or images.
128
+ i. "Reproduce" means to make copies of the Work by any means including
129
+ without limitation by sound or visual recordings and the right of
130
+ fixation and reproducing fixations of the Work, including storage of a
131
+ protected performance or phonogram in digital form or other electronic
132
+ medium.
133
+
134
+ 2. Fair Dealing Rights. Nothing in this License is intended to reduce,
135
+ limit, or restrict any uses free from copyright or rights arising from
136
+ limitations or exceptions that are provided for in connection with the
137
+ copyright protection under copyright law or other applicable laws.
138
+
139
+ 3. License Grant. Subject to the terms and conditions of this License,
140
+ Licensor hereby grants You a worldwide, royalty-free, non-exclusive,
141
+ perpetual (for the duration of the applicable copyright) license to
142
+ exercise the rights in the Work as stated below:
143
+
144
+ a. to Reproduce the Work, to incorporate the Work into one or more
145
+ Collections, and to Reproduce the Work as incorporated in the
146
+ Collections;
147
+ b. to create and Reproduce Adaptations provided that any such Adaptation,
148
+ including any translation in any medium, takes reasonable steps to
149
+ clearly label, demarcate or otherwise identify that changes were made
150
+ to the original Work. For example, a translation could be marked "The
151
+ original work was translated from English to Spanish," or a
152
+ modification could indicate "The original work has been modified.";
153
+ c. to Distribute and Publicly Perform the Work including as incorporated
154
+ in Collections; and,
155
+ d. to Distribute and Publicly Perform Adaptations.
156
+ e. For the avoidance of doubt:
157
+
158
+ i. Non-waivable Compulsory License Schemes. In those jurisdictions in
159
+ which the right to collect royalties through any statutory or
160
+ compulsory licensing scheme cannot be waived, the Licensor
161
+ reserves the exclusive right to collect such royalties for any
162
+ exercise by You of the rights granted under this License;
163
+ ii. Waivable Compulsory License Schemes. In those jurisdictions in
164
+ which the right to collect royalties through any statutory or
165
+ compulsory licensing scheme can be waived, the Licensor waives the
166
+ exclusive right to collect such royalties for any exercise by You
167
+ of the rights granted under this License; and,
168
+ iii. Voluntary License Schemes. The Licensor waives the right to
169
+ collect royalties, whether individually or, in the event that the
170
+ Licensor is a member of a collecting society that administers
171
+ voluntary licensing schemes, via that society, from any exercise
172
+ by You of the rights granted under this License.
173
+
174
+ The above rights may be exercised in all media and formats whether now
175
+ known or hereafter devised. The above rights include the right to make
176
+ such modifications as are technically necessary to exercise the rights in
177
+ other media and formats. Subject to Section 8(f), all rights not expressly
178
+ granted by Licensor are hereby reserved.
179
+
180
+ 4. Restrictions. The license granted in Section 3 above is expressly made
181
+ subject to and limited by the following restrictions:
182
+
183
+ a. You may Distribute or Publicly Perform the Work only under the terms
184
+ of this License. You must include a copy of, or the Uniform Resource
185
+ Identifier (URI) for, this License with every copy of the Work You
186
+ Distribute or Publicly Perform. You may not offer or impose any terms
187
+ on the Work that restrict the terms of this License or the ability of
188
+ the recipient of the Work to exercise the rights granted to that
189
+ recipient under the terms of the License. You may not sublicense the
190
+ Work. You must keep intact all notices that refer to this License and
191
+ to the disclaimer of warranties with every copy of the Work You
192
+ Distribute or Publicly Perform. When You Distribute or Publicly
193
+ Perform the Work, You may not impose any effective technological
194
+ measures on the Work that restrict the ability of a recipient of the
195
+ Work from You to exercise the rights granted to that recipient under
196
+ the terms of the License. This Section 4(a) applies to the Work as
197
+ incorporated in a Collection, but this does not require the Collection
198
+ apart from the Work itself to be made subject to the terms of this
199
+ License. If You create a Collection, upon notice from any Licensor You
200
+ must, to the extent practicable, remove from the Collection any credit
201
+ as required by Section 4(b), as requested. If You create an
202
+ Adaptation, upon notice from any Licensor You must, to the extent
203
+ practicable, remove from the Adaptation any credit as required by
204
+ Section 4(b), as requested.
205
+ b. If You Distribute, or Publicly Perform the Work or any Adaptations or
206
+ Collections, You must, unless a request has been made pursuant to
207
+ Section 4(a), keep intact all copyright notices for the Work and
208
+ provide, reasonable to the medium or means You are utilizing: (i) the
209
+ name of the Original Author (or pseudonym, if applicable) if supplied,
210
+ and/or if the Original Author and/or Licensor designate another party
211
+ or parties (e.g., a sponsor institute, publishing entity, journal) for
212
+ attribution ("Attribution Parties") in Licensor's copyright notice,
213
+ terms of service or by other reasonable means, the name of such party
214
+ or parties; (ii) the title of the Work if supplied; (iii) to the
215
+ extent reasonably practicable, the URI, if any, that Licensor
216
+ specifies to be associated with the Work, unless such URI does not
217
+ refer to the copyright notice or licensing information for the Work;
218
+ and (iv) , consistent with Section 3(b), in the case of an Adaptation,
219
+ a credit identifying the use of the Work in the Adaptation (e.g.,
220
+ "French translation of the Work by Original Author," or "Screenplay
221
+ based on original Work by Original Author"). The credit required by
222
+ this Section 4 (b) may be implemented in any reasonable manner;
223
+ provided, however, that in the case of a Adaptation or Collection, at
224
+ a minimum such credit will appear, if a credit for all contributing
225
+ authors of the Adaptation or Collection appears, then as part of these
226
+ credits and in a manner at least as prominent as the credits for the
227
+ other contributing authors. For the avoidance of doubt, You may only
228
+ use the credit required by this Section for the purpose of attribution
229
+ in the manner set out above and, by exercising Your rights under this
230
+ License, You may not implicitly or explicitly assert or imply any
231
+ connection with, sponsorship or endorsement by the Original Author,
232
+ Licensor and/or Attribution Parties, as appropriate, of You or Your
233
+ use of the Work, without the separate, express prior written
234
+ permission of the Original Author, Licensor and/or Attribution
235
+ Parties.
236
+ c. Except as otherwise agreed in writing by the Licensor or as may be
237
+ otherwise permitted by applicable law, if You Reproduce, Distribute or
238
+ Publicly Perform the Work either by itself or as part of any
239
+ Adaptations or Collections, You must not distort, mutilate, modify or
240
+ take other derogatory action in relation to the Work which would be
241
+ prejudicial to the Original Author's honor or reputation. Licensor
242
+ agrees that in those jurisdictions (e.g. Japan), in which any exercise
243
+ of the right granted in Section 3(b) of this License (the right to
244
+ make Adaptations) would be deemed to be a distortion, mutilation,
245
+ modification or other derogatory action prejudicial to the Original
246
+ Author's honor and reputation, the Licensor will waive or not assert,
247
+ as appropriate, this Section, to the fullest extent permitted by the
248
+ applicable national law, to enable You to reasonably exercise Your
249
+ right under Section 3(b) of this License (right to make Adaptations)
250
+ but not otherwise.
251
+
252
+ 5. Representations, Warranties and Disclaimer
253
+
254
+ UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR
255
+ OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY
256
+ KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE,
257
+ INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY,
258
+ FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF
259
+ LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS,
260
+ WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION
261
+ OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.
262
+
263
+ 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE
264
+ LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR
265
+ ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES
266
+ ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS
267
+ BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
268
+
269
+ 7. Termination
270
+
271
+ a. This License and the rights granted hereunder will terminate
272
+ automatically upon any breach by You of the terms of this License.
273
+ Individuals or entities who have received Adaptations or Collections
274
+ from You under this License, however, will not have their licenses
275
+ terminated provided such individuals or entities remain in full
276
+ compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will
277
+ survive any termination of this License.
278
+ b. Subject to the above terms and conditions, the license granted here is
279
+ perpetual (for the duration of the applicable copyright in the Work).
280
+ Notwithstanding the above, Licensor reserves the right to release the
281
+ Work under different license terms or to stop distributing the Work at
282
+ any time; provided, however that any such election will not serve to
283
+ withdraw this License (or any other license that has been, or is
284
+ required to be, granted under the terms of this License), and this
285
+ License will continue in full force and effect unless terminated as
286
+ stated above.
287
+
288
+ 8. Miscellaneous
289
+
290
+ a. Each time You Distribute or Publicly Perform the Work or a Collection,
291
+ the Licensor offers to the recipient a license to the Work on the same
292
+ terms and conditions as the license granted to You under this License.
293
+ b. Each time You Distribute or Publicly Perform an Adaptation, Licensor
294
+ offers to the recipient a license to the original Work on the same
295
+ terms and conditions as the license granted to You under this License.
296
+ c. If any provision of this License is invalid or unenforceable under
297
+ applicable law, it shall not affect the validity or enforceability of
298
+ the remainder of the terms of this License, and without further action
299
+ by the parties to this agreement, such provision shall be reformed to
300
+ the minimum extent necessary to make such provision valid and
301
+ enforceable.
302
+ d. No term or provision of this License shall be deemed waived and no
303
+ breach consented to unless such waiver or consent shall be in writing
304
+ and signed by the party to be charged with such waiver or consent.
305
+ e. This License constitutes the entire agreement between the parties with
306
+ respect to the Work licensed here. There are no understandings,
307
+ agreements or representations with respect to the Work not specified
308
+ here. Licensor shall not be bound by any additional provisions that
309
+ may appear in any communication from You. This License may not be
310
+ modified without the mutual written agreement of the Licensor and You.
311
+ f. The rights granted under, and the subject matter referenced, in this
312
+ License were drafted utilizing the terminology of the Berne Convention
313
+ for the Protection of Literary and Artistic Works (as amended on
314
+ September 28, 1979), the Rome Convention of 1961, the WIPO Copyright
315
+ Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996
316
+ and the Universal Copyright Convention (as revised on July 24, 1971).
317
+ These rights and subject matter take effect in the relevant
318
+ jurisdiction in which the License terms are sought to be enforced
319
+ according to the corresponding provisions of the implementation of
320
+ those treaty provisions in the applicable national law. If the
321
+ standard suite of rights granted under applicable copyright law
322
+ includes additional rights not granted under this License, such
323
+ additional rights are deemed to be included in the License; this
324
+ License is not intended to restrict the license of any rights under
325
+ applicable law.
326
+
327
+
328
+ Creative Commons Notice
329
+
330
+ Creative Commons is not a party to this License, and makes no warranty
331
+ whatsoever in connection with the Work. Creative Commons will not be
332
+ liable to You or any party on any legal theory for any damages
333
+ whatsoever, including without limitation any general, special,
334
+ incidental or consequential damages arising in connection to this
335
+ license. Notwithstanding the foregoing two (2) sentences, if Creative
336
+ Commons has expressly identified itself as the Licensor hereunder, it
337
+ shall have all rights and obligations of Licensor.
338
+
339
+ Except for the limited purpose of indicating to the public that the
340
+ Work is licensed under the CCPL, Creative Commons does not authorize
341
+ the use by either party of the trademark "Creative Commons" or any
342
+ related trademark or logo of Creative Commons without the prior
343
+ written consent of Creative Commons. Any permitted use will be in
344
+ compliance with Creative Commons' then-current trademark usage
345
+ guidelines, as may be published on its website or otherwise made
346
+ available upon request from time to time. For the avoidance of doubt,
347
+ this trademark restriction does not form part of this License.
348
+
349
+ Creative Commons may be contacted at https://creativecommons.org/.
350
+
351
+ *******************************************************************************
352
+
353
+ /!\ The SIL OPEN FONT LICENSE applies to all desktop and webfont files in the
354
+ following directory: fonts/ and to all glyphs and SVG files in the following
355
+ directory: src/icons/svg/.
356
+
357
+
358
+ Copyright (c) 2018, Fork Awesome (https://forkawesome.github.io),
359
+ with Reserved Font Name Fork Awesome.
360
+
361
+
362
+ This Font Software is licensed under the SIL Open Font License, Version 1.1.
363
+ This license is copied below, and is also available with a FAQ at:
364
+ http://scripts.sil.org/OFL
365
+
366
+
367
+ -----------------------------------------------------------
368
+ SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
369
+ -----------------------------------------------------------
370
+
371
+ PREAMBLE
372
+ The goals of the Open Font License (OFL) are to stimulate worldwide
373
+ development of collaborative font projects, to support the font creation
374
+ efforts of academic and linguistic communities, and to provide a free and
375
+ open framework in which fonts may be shared and improved in partnership
376
+ with others.
377
+
378
+ The OFL allows the licensed fonts to be used, studied, modified and
379
+ redistributed freely as long as they are not sold by themselves. The
380
+ fonts, including any derivative works, can be bundled, embedded,
381
+ redistributed and/or sold with any software provided that any reserved
382
+ names are not used by derivative works. The fonts and derivatives,
383
+ however, cannot be released under any other type of license. The
384
+ requirement for fonts to remain under this license does not apply
385
+ to any document created using the fonts or their derivatives.
386
+
387
+ DEFINITIONS
388
+ "Font Software" refers to the set of files released by the Copyright
389
+ Holder(s) under this license and clearly marked as such. This may
390
+ include source files, build scripts and documentation.
391
+
392
+ "Reserved Font Name" refers to any names specified as such after the
393
+ copyright statement(s).
394
+
395
+ "Original Version" refers to the collection of Font Software components as
396
+ distributed by the Copyright Holder(s).
397
+
398
+ "Modified Version" refers to any derivative made by adding to, deleting,
399
+ or substituting -- in part or in whole -- any of the components of the
400
+ Original Version, by changing formats or by porting the Font Software to a
401
+ new environment.
402
+
403
+ "Author" refers to any designer, engineer, programmer, technical
404
+ writer or other person who contributed to the Font Software.
405
+
406
+ PERMISSION & CONDITIONS
407
+ Permission is hereby granted, free of charge, to any person obtaining
408
+ a copy of the Font Software, to use, study, copy, merge, embed, modify,
409
+ redistribute, and sell modified and unmodified copies of the Font
410
+ Software, subject to the following conditions:
411
+
412
+ 1) Neither the Font Software nor any of its individual components,
413
+ in Original or Modified Versions, may be sold by itself.
414
+
415
+ 2) Original or Modified Versions of the Font Software may be bundled,
416
+ redistributed and/or sold with any software, provided that each copy
417
+ contains the above copyright notice and this license. These can be
418
+ included either as stand-alone text files, human-readable headers or
419
+ in the appropriate machine-readable metadata fields within text or
420
+ binary files as long as those fields can be easily viewed by the user.
421
+
422
+ 3) No Modified Version of the Font Software may use the Reserved Font
423
+ Name(s) unless explicit written permission is granted by the corresponding
424
+ Copyright Holder. This restriction only applies to the primary font name as
425
+ presented to the users.
426
+
427
+ 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
428
+ Software shall not be used to promote, endorse or advertise any
429
+ Modified Version, except to acknowledge the contribution(s) of the
430
+ Copyright Holder(s) and the Author(s) or with their explicit written
431
+ permission.
432
+
433
+ 5) The Font Software, modified or unmodified, in part or in whole,
434
+ must be distributed entirely under this license, and must not be
435
+ distributed under any other license. The requirement for fonts to
436
+ remain under this license does not apply to any document created
437
+ using the Font Software.
438
+
439
+ TERMINATION
440
+ This license becomes null and void if any of the above conditions are
441
+ not met.
442
+
443
+ DISCLAIMER
444
+ THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
445
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
446
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
447
+ OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
448
+ COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
449
+ INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
450
+ DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
451
+ FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
452
+ OTHER DEALINGS IN THE FONT SOFTWARE.
@@ -0,0 +1,93 @@
1
+ # Fork Awesome
2
+ ### A fork of the iconic font and CSS toolkit
3
+
4
+ [![npm](https://img.shields.io/npm/v/fork-awesome.svg?style=flat&colorB=CB3837)](https://www.npmjs.com/package/fork-awesome)
5
+ [![All Contributors](https://img.shields.io/badge/all_contributors-115-orange.svg?style=flat-square)](CONTRIBUTORS.md)
6
+ [![JSDeliver](https://data.jsdelivr.com/v1/package/npm/fork-awesome/badge)](https://www.jsdelivr.com/package/npm/fork-awesome)
7
+ [![CDNJS](https://img.shields.io/cdnjs/v/fork-awesome.svg?style=flat-square)](https://cdnjs.com/libraries/fork-awesome)
8
+ [![Build Status](https://travis-ci.org/ForkAwesome/Fork-Awesome.svg?branch=master)](https://travis-ci.org/ForkAwesome/Fork-Awesome)
9
+
10
+ Fork Awesome is a full suite of 744 pictographic icons for easy scalable vector graphics on websites, originally created by [Dave Gandy](https://twitter.com/davegandy) and now maintained by a community.
11
+
12
+ Following concerns regarding [the development of Font Awesome](https://github.com/FortAwesome/Font-Awesome/issues/12199#issuecomment-362919956), the PR Freeze since Oct 2016 and the direction [Fort Awesome](https://fortawesome.com/) is taking with the version 5.0 of their project, we are forking Font Awesome (4.7), in order to build on this amazing tool Dave Gandy has given us, while at the same time allowing this project to be run by a distributed community of contributors.
13
+
14
+ A tremendous gratitude is given to the whole team behind [Font Awesome](https://fontawesome.com), and you are encouraged to support them and buy Font Awesome Pro for your project.
15
+
16
+ Though If you believe in distributed open source design and wish to be part of this new adventure, please start submitting patches and suggestions of improvement.
17
+
18
+ Also, if you care about owning the build process of your icon font, this project will give you that. The whole pipeline is shared and free to use for any purpose. You could be spinning your own icon font with your clever name by just forking this project and changing a few settings.
19
+
20
+ ## How to use
21
+ There is a full page in our documentation website that explains [how to use Fork Awesome in your web project](https://forkaweso.me/Fork-Awesome/get-started/). It ranges from just pointing to a CSS file on a CDN, hosting it on your own server or even adapting the LESS and SCSS files to your own liking.
22
+
23
+ ## License
24
+ - The Fork Awesome font is licensed under the SIL OFL 1.1:
25
+ - http://scripts.sil.org/OFL
26
+ - Fork Awesome CSS, LESS, and Sass files are licensed under the MIT License:
27
+ - https://opensource.org/licenses/mit-license.html
28
+ - The Fork Awesome documentation is licensed under the CC BY 3.0 License:
29
+ - https://creativecommons.org/licenses/by/3.0/
30
+
31
+ ## Contributing
32
+
33
+ Please read through our [contributing guidelines](https://github.com/ForkAwesome/Fork-Awesome/blob/master/CONTRIBUTING.md).
34
+ Included are directions for opening issues, coding standards, and notes on development.
35
+
36
+ We also take great pride in recognizing any contributions made to this project. Whether you've written a blogpost about it, fixed a typo in the documentation or submitted new icons or code patches, we will happily list you in our [contributors list](CONTRIBUTORS.md).
37
+
38
+ ## Versioning
39
+
40
+ Fork Awesome will be maintained under the Semantic Versioning guidelines as much as possible. Releases will be numbered
41
+ with the following format:
42
+
43
+ `<major>.<minor>.<patch>`
44
+
45
+ And constructed with the following guidelines:
46
+
47
+ * Breaking backward compatibility bumps the major (and resets the minor and patch)
48
+ * Big changes, without breaking backward compatibility, bumps the minor (and resets the patch)
49
+ * Bug fixes, small adaptations, adding a few icons and misc changes bumps the patch
50
+ * The fork started from FontAwesome 4.7 (last commit by Dave is [bdfa9823](https://github.com/ForkAwesome/Fork-Awesome/commits/master?after=b0bc8f6fb74e05c987ef7ce1525cd3ab8390a1c3+69)).
51
+ * The project starts at version 1.0.0. All references to versions before the fork are named 0.4.7
52
+
53
+ For more information on SemVer, please visit http://semver.org.
54
+
55
+ ## Component
56
+ To include as a [component](https://github.com/componentjs/component), just run
57
+
58
+ $ component install ForkAwesome/Fork-Awesome
59
+
60
+ Or add
61
+
62
+ "ForkAwesome/Fork-Awesome": "*"
63
+
64
+ to the `dependencies` in your `component.json`.
65
+
66
+ ## Building Fork Awesome
67
+
68
+ **Before you can build the project**, you must first have the following installed:
69
+
70
+ - [Ruby](https://www.ruby-lang.org/en/)
71
+ - Ruby Development Headers
72
+ - **Ubuntu:** `sudo apt-get install ruby-dev` *(Only if you're __NOT__ using `rbenv` or `rvm`)*
73
+ - **Windows:** [DevKit](http://rubyinstaller.org/)
74
+ - **macOS:** no extra step required
75
+ - [Bundler](http://bundler.io/) (Run `gem install bundler` to install).
76
+ - [Node Package Manager (aka. `npm`)](https://docs.npmjs.com/getting-started/installing-node)
77
+
78
+ From the root of the repository, install the tools used to develop.
79
+
80
+ $ bundle install
81
+ $ npm ci
82
+
83
+ Build the font:
84
+
85
+ $:/src/icons make
86
+
87
+ Build the web documentation:
88
+
89
+ $ npm run build
90
+
91
+ Or serve it on a local server on http://localhost:7998:
92
+
93
+ $ npm run dev