irontask 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (417) hide show
  1. checksums.yaml +7 -0
  2. data/.bowerrc +4 -0
  3. data/.gitignore +3 -0
  4. data/Gemfile +4 -0
  5. data/Gemfile.lock +63 -0
  6. data/LICENSE.txt +22 -0
  7. data/README.md +29 -0
  8. data/Rakefile +2 -0
  9. data/bower.json +9 -0
  10. data/irontask.gemspec +28 -0
  11. data/lib/irontask.rb +9 -0
  12. data/lib/irontask/app.rb +48 -0
  13. data/lib/irontask/class_loader.rb +15 -0
  14. data/lib/irontask/models/task.rb +7 -0
  15. data/lib/irontask/public/components/font-awesome/.bower.json +14 -0
  16. data/lib/irontask/public/components/font-awesome/.gitignore +30 -0
  17. data/lib/irontask/public/components/font-awesome/.ruby-version +1 -0
  18. data/lib/irontask/public/components/font-awesome/CONTRIBUTING.md +75 -0
  19. data/lib/irontask/public/components/font-awesome/Gemfile +4 -0
  20. data/lib/irontask/public/components/font-awesome/Gemfile.lock +46 -0
  21. data/lib/irontask/public/components/font-awesome/README.md +62 -0
  22. data/lib/irontask/public/components/font-awesome/_config.yml +54 -0
  23. data/lib/irontask/public/components/font-awesome/composer.json +27 -0
  24. data/lib/irontask/public/components/font-awesome/css/font-awesome-ie7.css +1203 -0
  25. data/lib/irontask/public/components/font-awesome/css/font-awesome-ie7.min.css +384 -0
  26. data/lib/irontask/public/components/font-awesome/css/font-awesome.css +1479 -0
  27. data/lib/irontask/public/components/font-awesome/css/font-awesome.min.css +403 -0
  28. data/lib/irontask/public/components/font-awesome/font/FontAwesome.otf +0 -0
  29. data/lib/irontask/public/components/font-awesome/font/fontawesome-webfont.eot +0 -0
  30. data/lib/irontask/public/components/font-awesome/font/fontawesome-webfont.svg +399 -0
  31. data/lib/irontask/public/components/font-awesome/font/fontawesome-webfont.ttf +0 -0
  32. data/lib/irontask/public/components/font-awesome/font/fontawesome-webfont.woff +0 -0
  33. data/lib/irontask/public/components/font-awesome/less/bootstrap.less +84 -0
  34. data/lib/irontask/public/components/font-awesome/less/core.less +129 -0
  35. data/lib/irontask/public/components/font-awesome/less/extras.less +93 -0
  36. data/lib/irontask/public/components/font-awesome/less/font-awesome-ie7.less +1953 -0
  37. data/lib/irontask/public/components/font-awesome/less/font-awesome.less +33 -0
  38. data/lib/irontask/public/components/font-awesome/less/icons.less +381 -0
  39. data/lib/irontask/public/components/font-awesome/less/mixins.less +48 -0
  40. data/lib/irontask/public/components/font-awesome/less/path.less +14 -0
  41. data/lib/irontask/public/components/font-awesome/less/variables.less +735 -0
  42. data/lib/irontask/public/components/font-awesome/package.json +44 -0
  43. data/lib/irontask/public/components/font-awesome/scss/_bootstrap.scss +84 -0
  44. data/lib/irontask/public/components/font-awesome/scss/_core.scss +129 -0
  45. data/lib/irontask/public/components/font-awesome/scss/_extras.scss +93 -0
  46. data/lib/irontask/public/components/font-awesome/scss/_icons.scss +381 -0
  47. data/lib/irontask/public/components/font-awesome/scss/_mixins.scss +48 -0
  48. data/lib/irontask/public/components/font-awesome/scss/_path.scss +14 -0
  49. data/lib/irontask/public/components/font-awesome/scss/_variables.scss +734 -0
  50. data/lib/irontask/public/components/font-awesome/scss/font-awesome-ie7.scss +1953 -0
  51. data/lib/irontask/public/components/font-awesome/scss/font-awesome.scss +33 -0
  52. data/lib/irontask/public/components/font-awesome/src/CNAME +1 -0
  53. data/lib/irontask/public/components/font-awesome/src/Makefile +36 -0
  54. data/lib/irontask/public/components/font-awesome/src/_includes/ads/carbon-dark-vertical.html +1 -0
  55. data/lib/irontask/public/components/font-awesome/src/_includes/ads/carbon-light-horizontal.html +1 -0
  56. data/lib/irontask/public/components/font-awesome/src/_includes/ads/carbon-light-vertical.html +1 -0
  57. data/lib/irontask/public/components/font-awesome/src/_includes/brand-license.html +4 -0
  58. data/lib/irontask/public/components/font-awesome/src/_includes/cheatsheet.html +19 -0
  59. data/lib/irontask/public/components/font-awesome/src/_includes/community.html +20 -0
  60. data/lib/irontask/public/components/font-awesome/src/_includes/community/getting-support.html +22 -0
  61. data/lib/irontask/public/components/font-awesome/src/_includes/community/project-milestones.html +7 -0
  62. data/lib/irontask/public/components/font-awesome/src/_includes/community/reporting-bugs.html +18 -0
  63. data/lib/irontask/public/components/font-awesome/src/_includes/community/requesting-new-icons.html +27 -0
  64. data/lib/irontask/public/components/font-awesome/src/_includes/community/submitting-pull-requests.html +12 -0
  65. data/lib/irontask/public/components/font-awesome/src/_includes/examples.html +24 -0
  66. data/lib/irontask/public/components/font-awesome/src/_includes/examples/animated-spinner.html +20 -0
  67. data/lib/irontask/public/components/font-awesome/src/_includes/examples/bordered-pulled.html +33 -0
  68. data/lib/irontask/public/components/font-awesome/src/_includes/examples/bulleted-lists.html +31 -0
  69. data/lib/irontask/public/components/font-awesome/src/_includes/examples/button-dropdowns.html +36 -0
  70. data/lib/irontask/public/components/font-awesome/src/_includes/examples/button-groups.html +25 -0
  71. data/lib/irontask/public/components/font-awesome/src/_includes/examples/buttons.html +57 -0
  72. data/lib/irontask/public/components/font-awesome/src/_includes/examples/custom.html +16 -0
  73. data/lib/irontask/public/components/font-awesome/src/_includes/examples/form-inputs.html +31 -0
  74. data/lib/irontask/public/components/font-awesome/src/_includes/examples/inline-icons.html +19 -0
  75. data/lib/irontask/public/components/font-awesome/src/_includes/examples/larger-icons.html +35 -0
  76. data/lib/irontask/public/components/font-awesome/src/_includes/examples/navigation.html +26 -0
  77. data/lib/irontask/public/components/font-awesome/src/_includes/examples/new.html +47 -0
  78. data/lib/irontask/public/components/font-awesome/src/_includes/examples/rotated-flipped.html +29 -0
  79. data/lib/irontask/public/components/font-awesome/src/_includes/examples/stacked.html +55 -0
  80. data/lib/irontask/public/components/font-awesome/src/_includes/footer.html +23 -0
  81. data/lib/irontask/public/components/font-awesome/src/_includes/get-started.html +105 -0
  82. data/lib/irontask/public/components/font-awesome/src/_includes/icons.html +18 -0
  83. data/lib/irontask/public/components/font-awesome/src/_includes/icons/brand.html +15 -0
  84. data/lib/irontask/public/components/font-awesome/src/_includes/icons/currency.html +12 -0
  85. data/lib/irontask/public/components/font-awesome/src/_includes/icons/directional.html +12 -0
  86. data/lib/irontask/public/components/font-awesome/src/_includes/icons/medical.html +12 -0
  87. data/lib/irontask/public/components/font-awesome/src/_includes/icons/new.html +18 -0
  88. data/lib/irontask/public/components/font-awesome/src/_includes/icons/text-editor.html +12 -0
  89. data/lib/irontask/public/components/font-awesome/src/_includes/icons/video-player.html +12 -0
  90. data/lib/irontask/public/components/font-awesome/src/_includes/icons/web-application.html +12 -0
  91. data/lib/irontask/public/components/font-awesome/src/_includes/jumbotron-slider.html +53 -0
  92. data/lib/irontask/public/components/font-awesome/src/_includes/jumbotron.html +6 -0
  93. data/lib/irontask/public/components/font-awesome/src/_includes/license-code.less +25 -0
  94. data/lib/irontask/public/components/font-awesome/src/_includes/license.html +57 -0
  95. data/lib/irontask/public/components/font-awesome/src/_includes/navbar.html +69 -0
  96. data/lib/irontask/public/components/font-awesome/src/_includes/stripe-ad.html +10 -0
  97. data/lib/irontask/public/components/font-awesome/src/_includes/stripe-social.html +18 -0
  98. data/lib/irontask/public/components/font-awesome/src/_includes/tell-me-thanks.html +22 -0
  99. data/lib/irontask/public/components/font-awesome/src/_includes/tests/rotated-flipped-inside-anchor.html +6 -0
  100. data/lib/irontask/public/components/font-awesome/src/_includes/tests/rotated-flipped-inside-btn.html +6 -0
  101. data/lib/irontask/public/components/font-awesome/src/_includes/tests/rotated-flipped.html +6 -0
  102. data/lib/irontask/public/components/font-awesome/src/_includes/tests/stacked-inside-anchor.html +69 -0
  103. data/lib/irontask/public/components/font-awesome/src/_includes/tests/stacked.html +51 -0
  104. data/lib/irontask/public/components/font-awesome/src/_includes/thanks-to.html +26 -0
  105. data/lib/irontask/public/components/font-awesome/src/_includes/whats-new.html +38 -0
  106. data/lib/irontask/public/components/font-awesome/src/_includes/why.html +41 -0
  107. data/lib/irontask/public/components/font-awesome/src/_layouts/base.html +64 -0
  108. data/lib/irontask/public/components/font-awesome/src/_layouts/icon.html +62 -0
  109. data/lib/irontask/public/components/font-awesome/src/_plugins/icon_page_generator.rb +46 -0
  110. data/lib/irontask/public/components/font-awesome/src/_plugins/site.rb +142 -0
  111. data/lib/irontask/public/components/font-awesome/src/assets/css/prettify.css +30 -0
  112. data/lib/irontask/public/components/font-awesome/src/assets/css/pygments.css +71 -0
  113. data/lib/irontask/public/components/font-awesome/src/assets/font-awesome/font/FontAwesome.otf +0 -0
  114. data/lib/irontask/public/components/font-awesome/src/assets/font-awesome/font/fontawesome-webfont.eot +0 -0
  115. data/lib/irontask/public/components/font-awesome/src/assets/font-awesome/font/fontawesome-webfont.svg +399 -0
  116. data/lib/irontask/public/components/font-awesome/src/assets/font-awesome/font/fontawesome-webfont.ttf +0 -0
  117. data/lib/irontask/public/components/font-awesome/src/assets/font-awesome/font/fontawesome-webfont.woff +0 -0
  118. data/lib/irontask/public/components/font-awesome/src/assets/font-awesome/less/bootstrap.less +84 -0
  119. data/lib/irontask/public/components/font-awesome/src/assets/font-awesome/less/core.less +129 -0
  120. data/lib/irontask/public/components/font-awesome/src/assets/font-awesome/less/extras.less +93 -0
  121. data/lib/irontask/public/components/font-awesome/src/assets/font-awesome/less/font-awesome-ie7.less +67 -0
  122. data/lib/irontask/public/components/font-awesome/src/assets/font-awesome/less/font-awesome.less +11 -0
  123. data/lib/irontask/public/components/font-awesome/src/assets/font-awesome/less/icons.less +7 -0
  124. data/lib/irontask/public/components/font-awesome/src/assets/font-awesome/less/mixins.less +48 -0
  125. data/lib/irontask/public/components/font-awesome/src/assets/font-awesome/less/path.less +14 -0
  126. data/lib/irontask/public/components/font-awesome/src/assets/font-awesome/less/variables.less +17 -0
  127. data/lib/irontask/public/components/font-awesome/src/assets/font-awesome/scss/_bootstrap.scss +84 -0
  128. data/lib/irontask/public/components/font-awesome/src/assets/font-awesome/scss/_core.scss +129 -0
  129. data/lib/irontask/public/components/font-awesome/src/assets/font-awesome/scss/_extras.scss +93 -0
  130. data/lib/irontask/public/components/font-awesome/src/assets/font-awesome/scss/_icons.scss +7 -0
  131. data/lib/irontask/public/components/font-awesome/src/assets/font-awesome/scss/_mixins.scss +48 -0
  132. data/lib/irontask/public/components/font-awesome/src/assets/font-awesome/scss/_path.scss +14 -0
  133. data/lib/irontask/public/components/font-awesome/src/assets/font-awesome/scss/_variables.scss +16 -0
  134. data/lib/irontask/public/components/font-awesome/src/assets/font-awesome/scss/font-awesome-ie7.scss +67 -0
  135. data/lib/irontask/public/components/font-awesome/src/assets/font-awesome/scss/font-awesome.scss +11 -0
  136. data/lib/irontask/public/components/font-awesome/src/assets/ico/favicon.ico +0 -0
  137. data/lib/irontask/public/components/font-awesome/src/assets/img/contribution-sample.png +0 -0
  138. data/lib/irontask/public/components/font-awesome/src/assets/img/fort_awesome.jpg +0 -0
  139. data/lib/irontask/public/components/font-awesome/src/assets/img/glyphicons-halflings-white.png +0 -0
  140. data/lib/irontask/public/components/font-awesome/src/assets/img/glyphicons-halflings.png +0 -0
  141. data/lib/irontask/public/components/font-awesome/src/assets/img/icon-flag.pdf +1357 -0
  142. data/lib/irontask/public/components/font-awesome/src/assets/js/ZeroClipboard-1.1.7.min.js +8 -0
  143. data/lib/irontask/public/components/font-awesome/src/assets/js/ZeroClipboard-1.1.7.swf +0 -0
  144. data/lib/irontask/public/components/font-awesome/src/assets/js/backbone.min.js +37 -0
  145. data/lib/irontask/public/components/font-awesome/src/assets/js/bootstrap-2.3.1.min.js +6 -0
  146. data/lib/irontask/public/components/font-awesome/src/assets/js/bootstrap-222.min.js +6 -0
  147. data/lib/irontask/public/components/font-awesome/src/assets/js/jquery-1.7.1.min.js +4 -0
  148. data/lib/irontask/public/components/font-awesome/src/assets/js/prettify.min.js +28 -0
  149. data/lib/irontask/public/components/font-awesome/src/assets/js/site.js +38 -0
  150. data/lib/irontask/public/components/font-awesome/src/assets/js/underscore.min.js +31 -0
  151. data/lib/irontask/public/components/font-awesome/src/assets/less/bootstrap-2.3.2/accordion.less +34 -0
  152. data/lib/irontask/public/components/font-awesome/src/assets/less/bootstrap-2.3.2/alerts.less +79 -0
  153. data/lib/irontask/public/components/font-awesome/src/assets/less/bootstrap-2.3.2/bootstrap.less +63 -0
  154. data/lib/irontask/public/components/font-awesome/src/assets/less/bootstrap-2.3.2/breadcrumbs.less +24 -0
  155. data/lib/irontask/public/components/font-awesome/src/assets/less/bootstrap-2.3.2/button-groups.less +229 -0
  156. data/lib/irontask/public/components/font-awesome/src/assets/less/bootstrap-2.3.2/buttons.less +228 -0
  157. data/lib/irontask/public/components/font-awesome/src/assets/less/bootstrap-2.3.2/carousel.less +158 -0
  158. data/lib/irontask/public/components/font-awesome/src/assets/less/bootstrap-2.3.2/close.less +32 -0
  159. data/lib/irontask/public/components/font-awesome/src/assets/less/bootstrap-2.3.2/code.less +61 -0
  160. data/lib/irontask/public/components/font-awesome/src/assets/less/bootstrap-2.3.2/component-animations.less +22 -0
  161. data/lib/irontask/public/components/font-awesome/src/assets/less/bootstrap-2.3.2/dropdowns.less +248 -0
  162. data/lib/irontask/public/components/font-awesome/src/assets/less/bootstrap-2.3.2/forms.less +690 -0
  163. data/lib/irontask/public/components/font-awesome/src/assets/less/bootstrap-2.3.2/grid.less +21 -0
  164. data/lib/irontask/public/components/font-awesome/src/assets/less/bootstrap-2.3.2/hero-unit.less +25 -0
  165. data/lib/irontask/public/components/font-awesome/src/assets/less/bootstrap-2.3.2/labels-badges.less +84 -0
  166. data/lib/irontask/public/components/font-awesome/src/assets/less/bootstrap-2.3.2/layouts.less +16 -0
  167. data/lib/irontask/public/components/font-awesome/src/assets/less/bootstrap-2.3.2/media.less +55 -0
  168. data/lib/irontask/public/components/font-awesome/src/assets/less/bootstrap-2.3.2/mixins.less +702 -0
  169. data/lib/irontask/public/components/font-awesome/src/assets/less/bootstrap-2.3.2/modals.less +95 -0
  170. data/lib/irontask/public/components/font-awesome/src/assets/less/bootstrap-2.3.2/navbar.less +497 -0
  171. data/lib/irontask/public/components/font-awesome/src/assets/less/bootstrap-2.3.2/navs.less +409 -0
  172. data/lib/irontask/public/components/font-awesome/src/assets/less/bootstrap-2.3.2/pager.less +43 -0
  173. data/lib/irontask/public/components/font-awesome/src/assets/less/bootstrap-2.3.2/pagination.less +123 -0
  174. data/lib/irontask/public/components/font-awesome/src/assets/less/bootstrap-2.3.2/popovers.less +133 -0
  175. data/lib/irontask/public/components/font-awesome/src/assets/less/bootstrap-2.3.2/progress-bars.less +122 -0
  176. data/lib/irontask/public/components/font-awesome/src/assets/less/bootstrap-2.3.2/reset.less +216 -0
  177. data/lib/irontask/public/components/font-awesome/src/assets/less/bootstrap-2.3.2/responsive-1200px-min.less +28 -0
  178. data/lib/irontask/public/components/font-awesome/src/assets/less/bootstrap-2.3.2/responsive-767px-max.less +193 -0
  179. data/lib/irontask/public/components/font-awesome/src/assets/less/bootstrap-2.3.2/responsive-768px-979px.less +19 -0
  180. data/lib/irontask/public/components/font-awesome/src/assets/less/bootstrap-2.3.2/responsive-navbar.less +189 -0
  181. data/lib/irontask/public/components/font-awesome/src/assets/less/bootstrap-2.3.2/responsive-utilities.less +59 -0
  182. data/lib/irontask/public/components/font-awesome/src/assets/less/bootstrap-2.3.2/responsive.less +48 -0
  183. data/lib/irontask/public/components/font-awesome/src/assets/less/bootstrap-2.3.2/scaffolding.less +53 -0
  184. data/lib/irontask/public/components/font-awesome/src/assets/less/bootstrap-2.3.2/sprites.less +197 -0
  185. data/lib/irontask/public/components/font-awesome/src/assets/less/bootstrap-2.3.2/tables.less +244 -0
  186. data/lib/irontask/public/components/font-awesome/src/assets/less/bootstrap-2.3.2/thumbnails.less +53 -0
  187. data/lib/irontask/public/components/font-awesome/src/assets/less/bootstrap-2.3.2/tooltip.less +70 -0
  188. data/lib/irontask/public/components/font-awesome/src/assets/less/bootstrap-2.3.2/type.less +247 -0
  189. data/lib/irontask/public/components/font-awesome/src/assets/less/bootstrap-2.3.2/utilities.less +30 -0
  190. data/lib/irontask/public/components/font-awesome/src/assets/less/bootstrap-2.3.2/variables.less +301 -0
  191. data/lib/irontask/public/components/font-awesome/src/assets/less/bootstrap-2.3.2/wells.less +29 -0
  192. data/lib/irontask/public/components/font-awesome/src/assets/less/lazy.less +85 -0
  193. data/lib/irontask/public/components/font-awesome/src/assets/less/mixins.less +58 -0
  194. data/lib/irontask/public/components/font-awesome/src/assets/less/responsive-1200px-min.less +56 -0
  195. data/lib/irontask/public/components/font-awesome/src/assets/less/responsive-767px-max.less +83 -0
  196. data/lib/irontask/public/components/font-awesome/src/assets/less/responsive-768px-979px.less +67 -0
  197. data/lib/irontask/public/components/font-awesome/src/assets/less/responsive-navbar.less +11 -0
  198. data/lib/irontask/public/components/font-awesome/src/assets/less/responsive.less +55 -0
  199. data/lib/irontask/public/components/font-awesome/src/assets/less/site.less +354 -0
  200. data/lib/irontask/public/components/font-awesome/src/assets/less/sticky-footer.less +17 -0
  201. data/lib/irontask/public/components/font-awesome/src/assets/less/variables.less +347 -0
  202. data/lib/irontask/public/components/font-awesome/src/cheatsheet.html +14 -0
  203. data/lib/irontask/public/components/font-awesome/src/community.html +15 -0
  204. data/lib/irontask/public/components/font-awesome/src/design.html +1 -0
  205. data/lib/irontask/public/components/font-awesome/src/examples.html +15 -0
  206. data/lib/irontask/public/components/font-awesome/src/get-started.html +15 -0
  207. data/lib/irontask/public/components/font-awesome/src/icons.html +15 -0
  208. data/lib/irontask/public/components/font-awesome/src/icons.yml +2590 -0
  209. data/lib/irontask/public/components/font-awesome/src/index.html +22 -0
  210. data/lib/irontask/public/components/font-awesome/src/license.html +15 -0
  211. data/lib/irontask/public/components/font-awesome/src/test.html +714 -0
  212. data/lib/irontask/public/components/font-awesome/src/whats-new.html +17 -0
  213. data/lib/irontask/public/components/jquery/.bower.json +21 -0
  214. data/lib/irontask/public/components/jquery/.gitignore +1 -0
  215. data/lib/irontask/public/components/jquery/README.md +11 -0
  216. data/lib/irontask/public/components/jquery/bower.json +11 -0
  217. data/lib/irontask/public/components/jquery/component.json +15 -0
  218. data/lib/irontask/public/components/jquery/composer.json +35 -0
  219. data/lib/irontask/public/components/jquery/jquery-migrate.js +511 -0
  220. data/lib/irontask/public/components/jquery/jquery-migrate.min.js +3 -0
  221. data/lib/irontask/public/components/jquery/jquery.js +8829 -0
  222. data/lib/irontask/public/components/jquery/jquery.min.js +6 -0
  223. data/lib/irontask/public/components/jquery/jquery.min.map +1 -0
  224. data/lib/irontask/public/components/jquery/package.json +7 -0
  225. data/lib/irontask/public/components/mustache/.bower.json +14 -0
  226. data/lib/irontask/public/components/mustache/.gitignore +10 -0
  227. data/lib/irontask/public/components/mustache/.jshintrc +5 -0
  228. data/lib/irontask/public/components/mustache/.travis.yml +4 -0
  229. data/lib/irontask/public/components/mustache/CHANGES +34 -0
  230. data/lib/irontask/public/components/mustache/LICENSE +10 -0
  231. data/lib/irontask/public/components/mustache/README.md +400 -0
  232. data/lib/irontask/public/components/mustache/Rakefile +68 -0
  233. data/lib/irontask/public/components/mustache/mustache.js +610 -0
  234. data/lib/irontask/public/components/mustache/mustache.js.nuspec +14 -0
  235. data/lib/irontask/public/components/mustache/package.json +17 -0
  236. data/lib/irontask/public/components/mustache/test/_files/ampersand_escape.js +3 -0
  237. data/lib/irontask/public/components/mustache/test/_files/ampersand_escape.mustache +1 -0
  238. data/lib/irontask/public/components/mustache/test/_files/ampersand_escape.txt +1 -0
  239. data/lib/irontask/public/components/mustache/test/_files/apostrophe.js +4 -0
  240. data/lib/irontask/public/components/mustache/test/_files/apostrophe.mustache +1 -0
  241. data/lib/irontask/public/components/mustache/test/_files/apostrophe.txt +1 -0
  242. data/lib/irontask/public/components/mustache/test/_files/array_of_strings.js +3 -0
  243. data/lib/irontask/public/components/mustache/test/_files/array_of_strings.mustache +1 -0
  244. data/lib/irontask/public/components/mustache/test/_files/array_of_strings.txt +1 -0
  245. data/lib/irontask/public/components/mustache/test/_files/backslashes.js +3 -0
  246. data/lib/irontask/public/components/mustache/test/_files/backslashes.mustache +7 -0
  247. data/lib/irontask/public/components/mustache/test/_files/backslashes.txt +7 -0
  248. data/lib/irontask/public/components/mustache/test/_files/bug_11_eating_whitespace.js +3 -0
  249. data/lib/irontask/public/components/mustache/test/_files/bug_11_eating_whitespace.mustache +1 -0
  250. data/lib/irontask/public/components/mustache/test/_files/bug_11_eating_whitespace.txt +1 -0
  251. data/lib/irontask/public/components/mustache/test/_files/changing_delimiters.js +4 -0
  252. data/lib/irontask/public/components/mustache/test/_files/changing_delimiters.mustache +1 -0
  253. data/lib/irontask/public/components/mustache/test/_files/changing_delimiters.txt +1 -0
  254. data/lib/irontask/public/components/mustache/test/_files/check_falsy.js +7 -0
  255. data/lib/irontask/public/components/mustache/test/_files/check_falsy.mustache +1 -0
  256. data/lib/irontask/public/components/mustache/test/_files/check_falsy.txt +1 -0
  257. data/lib/irontask/public/components/mustache/test/_files/comments.js +5 -0
  258. data/lib/irontask/public/components/mustache/test/_files/comments.mustache +1 -0
  259. data/lib/irontask/public/components/mustache/test/_files/comments.txt +1 -0
  260. data/lib/irontask/public/components/mustache/test/_files/complex.js +19 -0
  261. data/lib/irontask/public/components/mustache/test/_files/complex.mustache +16 -0
  262. data/lib/irontask/public/components/mustache/test/_files/complex.txt +6 -0
  263. data/lib/irontask/public/components/mustache/test/_files/context_lookup.js +8 -0
  264. data/lib/irontask/public/components/mustache/test/_files/context_lookup.mustache +1 -0
  265. data/lib/irontask/public/components/mustache/test/_files/context_lookup.txt +1 -0
  266. data/lib/irontask/public/components/mustache/test/_files/delimiters.js +6 -0
  267. data/lib/irontask/public/components/mustache/test/_files/delimiters.mustache +7 -0
  268. data/lib/irontask/public/components/mustache/test/_files/delimiters.txt +5 -0
  269. data/lib/irontask/public/components/mustache/test/_files/disappearing_whitespace.js +4 -0
  270. data/lib/irontask/public/components/mustache/test/_files/disappearing_whitespace.mustache +1 -0
  271. data/lib/irontask/public/components/mustache/test/_files/disappearing_whitespace.txt +1 -0
  272. data/lib/irontask/public/components/mustache/test/_files/dot_notation.js +23 -0
  273. data/lib/irontask/public/components/mustache/test/_files/dot_notation.mustache +9 -0
  274. data/lib/irontask/public/components/mustache/test/_files/dot_notation.txt +9 -0
  275. data/lib/irontask/public/components/mustache/test/_files/double_render.js +5 -0
  276. data/lib/irontask/public/components/mustache/test/_files/double_render.mustache +1 -0
  277. data/lib/irontask/public/components/mustache/test/_files/double_render.txt +1 -0
  278. data/lib/irontask/public/components/mustache/test/_files/empty_list.js +3 -0
  279. data/lib/irontask/public/components/mustache/test/_files/empty_list.mustache +4 -0
  280. data/lib/irontask/public/components/mustache/test/_files/empty_list.txt +1 -0
  281. data/lib/irontask/public/components/mustache/test/_files/empty_sections.js +1 -0
  282. data/lib/irontask/public/components/mustache/test/_files/empty_sections.mustache +1 -0
  283. data/lib/irontask/public/components/mustache/test/_files/empty_sections.txt +1 -0
  284. data/lib/irontask/public/components/mustache/test/_files/empty_string.js +6 -0
  285. data/lib/irontask/public/components/mustache/test/_files/empty_string.mustache +1 -0
  286. data/lib/irontask/public/components/mustache/test/_files/empty_string.txt +1 -0
  287. data/lib/irontask/public/components/mustache/test/_files/empty_template.js +1 -0
  288. data/lib/irontask/public/components/mustache/test/_files/empty_template.mustache +1 -0
  289. data/lib/irontask/public/components/mustache/test/_files/empty_template.txt +1 -0
  290. data/lib/irontask/public/components/mustache/test/_files/error_not_found.js +3 -0
  291. data/lib/irontask/public/components/mustache/test/_files/error_not_found.mustache +1 -0
  292. data/lib/irontask/public/components/mustache/test/_files/error_not_found.txt +0 -0
  293. data/lib/irontask/public/components/mustache/test/_files/escaped.js +6 -0
  294. data/lib/irontask/public/components/mustache/test/_files/escaped.mustache +2 -0
  295. data/lib/irontask/public/components/mustache/test/_files/escaped.txt +2 -0
  296. data/lib/irontask/public/components/mustache/test/_files/falsy.js +8 -0
  297. data/lib/irontask/public/components/mustache/test/_files/falsy.mustache +12 -0
  298. data/lib/irontask/public/components/mustache/test/_files/falsy.txt +12 -0
  299. data/lib/irontask/public/components/mustache/test/_files/grandparent_context.js +19 -0
  300. data/lib/irontask/public/components/mustache/test/_files/grandparent_context.mustache +10 -0
  301. data/lib/irontask/public/components/mustache/test/_files/grandparent_context.txt +17 -0
  302. data/lib/irontask/public/components/mustache/test/_files/higher_order_sections.js +9 -0
  303. data/lib/irontask/public/components/mustache/test/_files/higher_order_sections.mustache +1 -0
  304. data/lib/irontask/public/components/mustache/test/_files/higher_order_sections.txt +1 -0
  305. data/lib/irontask/public/components/mustache/test/_files/included_tag.js +3 -0
  306. data/lib/irontask/public/components/mustache/test/_files/included_tag.mustache +1 -0
  307. data/lib/irontask/public/components/mustache/test/_files/included_tag.txt +1 -0
  308. data/lib/irontask/public/components/mustache/test/_files/inverted_section.js +3 -0
  309. data/lib/irontask/public/components/mustache/test/_files/inverted_section.mustache +3 -0
  310. data/lib/irontask/public/components/mustache/test/_files/inverted_section.txt +3 -0
  311. data/lib/irontask/public/components/mustache/test/_files/keys_with_questionmarks.js +5 -0
  312. data/lib/irontask/public/components/mustache/test/_files/keys_with_questionmarks.mustache +3 -0
  313. data/lib/irontask/public/components/mustache/test/_files/keys_with_questionmarks.txt +1 -0
  314. data/lib/irontask/public/components/mustache/test/_files/malicious_template.js +1 -0
  315. data/lib/irontask/public/components/mustache/test/_files/malicious_template.mustache +5 -0
  316. data/lib/irontask/public/components/mustache/test/_files/malicious_template.txt +2 -0
  317. data/lib/irontask/public/components/mustache/test/_files/multiline_comment.js +1 -0
  318. data/lib/irontask/public/components/mustache/test/_files/multiline_comment.mustache +6 -0
  319. data/lib/irontask/public/components/mustache/test/_files/multiline_comment.txt +1 -0
  320. data/lib/irontask/public/components/mustache/test/_files/nested_higher_order_sections.js +8 -0
  321. data/lib/irontask/public/components/mustache/test/_files/nested_higher_order_sections.mustache +1 -0
  322. data/lib/irontask/public/components/mustache/test/_files/nested_higher_order_sections.txt +1 -0
  323. data/lib/irontask/public/components/mustache/test/_files/nested_iterating.js +8 -0
  324. data/lib/irontask/public/components/mustache/test/_files/nested_iterating.mustache +1 -0
  325. data/lib/irontask/public/components/mustache/test/_files/nested_iterating.txt +1 -0
  326. data/lib/irontask/public/components/mustache/test/_files/nesting.js +7 -0
  327. data/lib/irontask/public/components/mustache/test/_files/nesting.mustache +5 -0
  328. data/lib/irontask/public/components/mustache/test/_files/nesting.txt +3 -0
  329. data/lib/irontask/public/components/mustache/test/_files/nesting_same_name.js +8 -0
  330. data/lib/irontask/public/components/mustache/test/_files/nesting_same_name.mustache +1 -0
  331. data/lib/irontask/public/components/mustache/test/_files/nesting_same_name.txt +1 -0
  332. data/lib/irontask/public/components/mustache/test/_files/null_string.js +10 -0
  333. data/lib/irontask/public/components/mustache/test/_files/null_string.mustache +6 -0
  334. data/lib/irontask/public/components/mustache/test/_files/null_string.txt +6 -0
  335. data/lib/irontask/public/components/mustache/test/_files/null_view.js +4 -0
  336. data/lib/irontask/public/components/mustache/test/_files/null_view.mustache +1 -0
  337. data/lib/irontask/public/components/mustache/test/_files/null_view.txt +1 -0
  338. data/lib/irontask/public/components/mustache/test/_files/partial_array.js +3 -0
  339. data/lib/irontask/public/components/mustache/test/_files/partial_array.mustache +1 -0
  340. data/lib/irontask/public/components/mustache/test/_files/partial_array.partial +4 -0
  341. data/lib/irontask/public/components/mustache/test/_files/partial_array.txt +5 -0
  342. data/lib/irontask/public/components/mustache/test/_files/partial_array_of_partials.js +8 -0
  343. data/lib/irontask/public/components/mustache/test/_files/partial_array_of_partials.mustache +4 -0
  344. data/lib/irontask/public/components/mustache/test/_files/partial_array_of_partials.partial +1 -0
  345. data/lib/irontask/public/components/mustache/test/_files/partial_array_of_partials.txt +5 -0
  346. data/lib/irontask/public/components/mustache/test/_files/partial_array_of_partials_implicit.js +3 -0
  347. data/lib/irontask/public/components/mustache/test/_files/partial_array_of_partials_implicit.mustache +4 -0
  348. data/lib/irontask/public/components/mustache/test/_files/partial_array_of_partials_implicit.partial +1 -0
  349. data/lib/irontask/public/components/mustache/test/_files/partial_array_of_partials_implicit.txt +5 -0
  350. data/lib/irontask/public/components/mustache/test/_files/partial_empty.js +3 -0
  351. data/lib/irontask/public/components/mustache/test/_files/partial_empty.mustache +2 -0
  352. data/lib/irontask/public/components/mustache/test/_files/partial_empty.partial +0 -0
  353. data/lib/irontask/public/components/mustache/test/_files/partial_empty.txt +1 -0
  354. data/lib/irontask/public/components/mustache/test/_files/partial_template.js +6 -0
  355. data/lib/irontask/public/components/mustache/test/_files/partial_template.mustache +2 -0
  356. data/lib/irontask/public/components/mustache/test/_files/partial_template.partial +1 -0
  357. data/lib/irontask/public/components/mustache/test/_files/partial_template.txt +2 -0
  358. data/lib/irontask/public/components/mustache/test/_files/partial_view.js +14 -0
  359. data/lib/irontask/public/components/mustache/test/_files/partial_view.mustache +3 -0
  360. data/lib/irontask/public/components/mustache/test/_files/partial_view.partial +5 -0
  361. data/lib/irontask/public/components/mustache/test/_files/partial_view.txt +5 -0
  362. data/lib/irontask/public/components/mustache/test/_files/partial_whitespace.js +14 -0
  363. data/lib/irontask/public/components/mustache/test/_files/partial_whitespace.mustache +3 -0
  364. data/lib/irontask/public/components/mustache/test/_files/partial_whitespace.partial +5 -0
  365. data/lib/irontask/public/components/mustache/test/_files/partial_whitespace.txt +5 -0
  366. data/lib/irontask/public/components/mustache/test/_files/recursion_with_same_names.js +8 -0
  367. data/lib/irontask/public/components/mustache/test/_files/recursion_with_same_names.mustache +7 -0
  368. data/lib/irontask/public/components/mustache/test/_files/recursion_with_same_names.txt +7 -0
  369. data/lib/irontask/public/components/mustache/test/_files/reuse_of_enumerables.js +6 -0
  370. data/lib/irontask/public/components/mustache/test/_files/reuse_of_enumerables.mustache +8 -0
  371. data/lib/irontask/public/components/mustache/test/_files/reuse_of_enumerables.txt +8 -0
  372. data/lib/irontask/public/components/mustache/test/_files/section_as_context.js +10 -0
  373. data/lib/irontask/public/components/mustache/test/_files/section_as_context.mustache +9 -0
  374. data/lib/irontask/public/components/mustache/test/_files/section_as_context.txt +6 -0
  375. data/lib/irontask/public/components/mustache/test/_files/simple.js +8 -0
  376. data/lib/irontask/public/components/mustache/test/_files/simple.mustache +5 -0
  377. data/lib/irontask/public/components/mustache/test/_files/simple.txt +3 -0
  378. data/lib/irontask/public/components/mustache/test/_files/string_as_context.js +4 -0
  379. data/lib/irontask/public/components/mustache/test/_files/string_as_context.mustache +5 -0
  380. data/lib/irontask/public/components/mustache/test/_files/string_as_context.txt +5 -0
  381. data/lib/irontask/public/components/mustache/test/_files/two_in_a_row.js +4 -0
  382. data/lib/irontask/public/components/mustache/test/_files/two_in_a_row.mustache +1 -0
  383. data/lib/irontask/public/components/mustache/test/_files/two_in_a_row.txt +1 -0
  384. data/lib/irontask/public/components/mustache/test/_files/two_sections.js +1 -0
  385. data/lib/irontask/public/components/mustache/test/_files/two_sections.mustache +4 -0
  386. data/lib/irontask/public/components/mustache/test/_files/two_sections.txt +0 -0
  387. data/lib/irontask/public/components/mustache/test/_files/unescaped.js +5 -0
  388. data/lib/irontask/public/components/mustache/test/_files/unescaped.mustache +1 -0
  389. data/lib/irontask/public/components/mustache/test/_files/unescaped.txt +1 -0
  390. data/lib/irontask/public/components/mustache/test/_files/whitespace.js +4 -0
  391. data/lib/irontask/public/components/mustache/test/_files/whitespace.mustache +4 -0
  392. data/lib/irontask/public/components/mustache/test/_files/whitespace.txt +4 -0
  393. data/lib/irontask/public/components/mustache/test/context-test.js +51 -0
  394. data/lib/irontask/public/components/mustache/test/helper.js +2 -0
  395. data/lib/irontask/public/components/mustache/test/parse-test.js +106 -0
  396. data/lib/irontask/public/components/mustache/test/render-test.js +68 -0
  397. data/lib/irontask/public/components/mustache/test/scanner-test.js +78 -0
  398. data/lib/irontask/public/components/mustache/test/writer-test.js +43 -0
  399. data/lib/irontask/public/components/mustache/wrappers/dojo/mustache.js.post +4 -0
  400. data/lib/irontask/public/components/mustache/wrappers/dojo/mustache.js.pre +9 -0
  401. data/lib/irontask/public/components/mustache/wrappers/jquery/mustache.js.post +14 -0
  402. data/lib/irontask/public/components/mustache/wrappers/jquery/mustache.js.pre +9 -0
  403. data/lib/irontask/public/components/mustache/wrappers/mootools/mustache.js.post +5 -0
  404. data/lib/irontask/public/components/mustache/wrappers/mootools/mustache.js.pre +2 -0
  405. data/lib/irontask/public/components/mustache/wrappers/qooxdoo/mustache.js.post +9 -0
  406. data/lib/irontask/public/components/mustache/wrappers/qooxdoo/mustache.js.pre +134 -0
  407. data/lib/irontask/public/components/normalize-css/.bower.json +22 -0
  408. data/lib/irontask/public/components/normalize-css/LICENSE.md +19 -0
  409. data/lib/irontask/public/components/normalize-css/README.md +54 -0
  410. data/lib/irontask/public/components/normalize-css/bower.json +12 -0
  411. data/lib/irontask/public/components/normalize-css/normalize.css +406 -0
  412. data/lib/irontask/public/css/main.css +158 -0
  413. data/lib/irontask/public/images/ajax-loader.gif +0 -0
  414. data/lib/irontask/public/index.html +47 -0
  415. data/lib/irontask/public/js/main.js +66 -0
  416. data/lib/irontask/version.rb +3 -0
  417. metadata +544 -0
@@ -0,0 +1,14 @@
1
+ ---
2
+ layout: base
3
+ title: Font Awesome Cheatsheet
4
+ relative_path: ../
5
+ ---
6
+ {% capture jumbotron_h1 %}<i class="icon-list-ul icon-large"></i>&nbsp; Cheatsheet{% endcapture %}
7
+ {% capture jumbotron_p %}The complete Font Awesome {{ site.fontawesome.version }} icon reference{% endcapture %}
8
+
9
+ {% include jumbotron.html %}
10
+ {% include stripe-social.html %}
11
+
12
+ <div class="container">
13
+ {% include cheatsheet.html %}
14
+ </div>
@@ -0,0 +1,15 @@
1
+ ---
2
+ layout: base
3
+ title: The Font Awesome Community
4
+ navbar_active: community
5
+ relative_path: ../
6
+ ---
7
+ {% capture jumbotron_h1 %}<i class="icon-thumbs-up-alt icon-large"></i>&nbsp; Community{% endcapture %}
8
+ {% capture jumbotron_p %}Lots of ways to get involved with Font Awesome{% endcapture %}
9
+
10
+ {% include jumbotron.html %}
11
+ {% include stripe-social.html %}
12
+
13
+ <div class="container">
14
+ {% include community.html %}
15
+ </div>
@@ -0,0 +1 @@
1
+ <META HTTP-EQUIV=REFRESH CONTENT="0; URL=cheatsheet/">
@@ -0,0 +1,15 @@
1
+ ---
2
+ layout: base
3
+ title: Font Awesome Examples
4
+ navbar_active: examples
5
+ relative_path: ../
6
+ ---
7
+ {% capture jumbotron_h1 %}<i class="icon-magic icon-large"></i>&nbsp; Examples{% endcapture %}
8
+ {% capture jumbotron_p %}Lots of easy ways to use Font Awesome{% endcapture %}
9
+
10
+ {% include jumbotron.html %}
11
+ {% include stripe-social.html %}
12
+
13
+ <div class="container">
14
+ {% include examples.html %}
15
+ </div>
@@ -0,0 +1,15 @@
1
+ ---
2
+ layout: base
3
+ title: Get Started with Font Awesome
4
+ navbar_active: get-started
5
+ relative_path: ../
6
+ ---
7
+ {% capture jumbotron_h1 %}<i class="icon-cogs icon-large"></i>&nbsp; Get Started{% endcapture %}
8
+ {% capture jumbotron_p %}Easy ways to get Font Awesome {{ site.fontawesome.version }} onto your website{% endcapture %}
9
+
10
+ {% include jumbotron.html %}
11
+ {% include stripe-social.html %}
12
+
13
+ <div class="container">
14
+ {% include get-started.html %}
15
+ </div>
@@ -0,0 +1,15 @@
1
+ ---
2
+ layout: base
3
+ title: Font Awesome Icons
4
+ navbar_active: icons
5
+ relative_path: ../
6
+ ---
7
+ {% capture jumbotron_h1 %}<i class="icon-flag icon-large"></i>&nbsp; The Icons{% endcapture %}
8
+ {% capture jumbotron_p %}The complete set of {{ icons | size }} icons in Font Awesome {{ site.fontawesome.version }}{% endcapture %}
9
+
10
+ {% include jumbotron.html %}
11
+ {% include stripe-social.html %}
12
+
13
+ <div class="container">
14
+ {% include icons.html %}
15
+ </div>
@@ -0,0 +1,2590 @@
1
+ icons:
2
+ - name: Glass
3
+ id: glass
4
+ unicode: f000
5
+ created: 1.0
6
+ categories:
7
+ - Web Application Icons
8
+
9
+ - name: Music
10
+ id: music
11
+ unicode: f001
12
+ created: 1.0
13
+ categories:
14
+ - Web Application Icons
15
+
16
+ - name: Search
17
+ id: search
18
+ unicode: f002
19
+ created: 1.0
20
+ categories:
21
+ - Web Application Icons
22
+
23
+ - name: Envelope Alt
24
+ id: envelope-alt
25
+ unicode: f003
26
+ created: 1.0
27
+ categories:
28
+ - Web Application Icons
29
+
30
+ - name: Heart
31
+ id: heart
32
+ unicode: f004
33
+ created: 1.0
34
+ categories:
35
+ - Web Application Icons
36
+
37
+ - name: Star
38
+ id: star
39
+ unicode: f005
40
+ created: 1.0
41
+ categories:
42
+ - Web Application Icons
43
+
44
+ - name: Star Empty
45
+ id: star-empty
46
+ unicode: f006
47
+ created: 1.0
48
+ categories:
49
+ - Web Application Icons
50
+
51
+ - name: User
52
+ id: user
53
+ unicode: f007
54
+ created: 1.0
55
+ categories:
56
+ - Web Application Icons
57
+
58
+ - name: Film
59
+ id: film
60
+ unicode: f008
61
+ created: 1.0
62
+ categories:
63
+ - Web Application Icons
64
+
65
+ - name: th-large
66
+ id: th-large
67
+ unicode: f009
68
+ created: 1.0
69
+ categories:
70
+ - Text Editor Icons
71
+
72
+ - name: th
73
+ id: th
74
+ unicode: f00a
75
+ created: 1.0
76
+ categories:
77
+ - Text Editor Icons
78
+
79
+ - name: th-list
80
+ id: th-list
81
+ unicode: f00b
82
+ created: 1.0
83
+ categories:
84
+ - Text Editor Icons
85
+
86
+ - name: OK
87
+ id: ok
88
+ unicode: f00c
89
+ created: 1.0
90
+ categories:
91
+ - Web Application Icons
92
+
93
+ - name: Remove
94
+ id: remove
95
+ unicode: f00d
96
+ created: 1.0
97
+ categories:
98
+ - Web Application Icons
99
+
100
+ - name: Zoom In
101
+ id: zoom-in
102
+ unicode: f00e
103
+ created: 1.0
104
+ categories:
105
+ - Web Application Icons
106
+
107
+
108
+ - name: Zoom Out
109
+ id: zoom-out
110
+ unicode: f010
111
+ created: 1.0
112
+ categories:
113
+ - Web Application Icons
114
+
115
+ - name: Off
116
+ id: 'off'
117
+ unicode: f011
118
+ created: 1.0
119
+ aliases:
120
+ - power-off
121
+ categories:
122
+ - Web Application Icons
123
+
124
+ - name: signal
125
+ id: signal
126
+ unicode: f012
127
+ created: 1.0
128
+ categories:
129
+ - Web Application Icons
130
+
131
+ - name: cog
132
+ id: cog
133
+ unicode: f013
134
+ created: 1.0
135
+ aliases:
136
+ - gear
137
+ categories:
138
+ - Web Application Icons
139
+
140
+ - name: trash
141
+ id: trash
142
+ unicode: f014
143
+ created: 1.0
144
+ categories:
145
+ - Web Application Icons
146
+
147
+ - name: home
148
+ id: home
149
+ unicode: f015
150
+ created: 1.0
151
+ categories:
152
+ - Web Application Icons
153
+
154
+ - name: file-alt
155
+ id: file-alt
156
+ unicode: f016
157
+ created: 1.0
158
+ categories:
159
+ - Text Editor Icons
160
+
161
+ - name: time
162
+ id: time
163
+ unicode: f017
164
+ created: 1.0
165
+ categories:
166
+ - Web Application Icons
167
+
168
+ - name: road
169
+ id: road
170
+ unicode: f018
171
+ created: 1.0
172
+ categories:
173
+ - Web Application Icons
174
+
175
+ - name: download-alt
176
+ id: download-alt
177
+ unicode: f019
178
+ created: 1.0
179
+ categories:
180
+ - Web Application Icons
181
+
182
+ - name: download
183
+ id: download
184
+ unicode: f01a
185
+ created: 1.0
186
+ categories:
187
+ - Web Application Icons
188
+
189
+ - name: upload
190
+ id: upload
191
+ unicode: f01b
192
+ created: 1.0
193
+ categories:
194
+ - Web Application Icons
195
+
196
+ - name: inbox
197
+ id: inbox
198
+ unicode: f01c
199
+ created: 1.0
200
+ categories:
201
+ - Web Application Icons
202
+
203
+ - name: play-circle
204
+ id: play-circle
205
+ unicode: f01d
206
+ created: 1.0
207
+ categories:
208
+ - Video Player Icons
209
+
210
+ - name: repeat
211
+ id: repeat
212
+ unicode: f01e
213
+ created: 1.0
214
+ aliases:
215
+ - rotate-right
216
+ categories:
217
+ - Text Editor Icons
218
+
219
+
220
+ - name: refresh
221
+ id: refresh
222
+ unicode: f021
223
+ created: 1.0
224
+ categories:
225
+ - Web Application Icons
226
+
227
+ - name: list-alt
228
+ id: list-alt
229
+ unicode: f022
230
+ created: 1.0
231
+ categories:
232
+ - Text Editor Icons
233
+
234
+ - name: lock
235
+ id: lock
236
+ unicode: f023
237
+ created: 1.0
238
+ categories:
239
+ - Web Application Icons
240
+
241
+ - name: flag
242
+ id: flag
243
+ unicode: f024
244
+ created: 1.0
245
+ categories:
246
+ - Web Application Icons
247
+
248
+ - name: headphones
249
+ id: headphones
250
+ unicode: f025
251
+ created: 1.0
252
+ categories:
253
+ - Web Application Icons
254
+
255
+ - name: volume-off
256
+ id: volume-off
257
+ unicode: f026
258
+ created: 1.0
259
+ categories:
260
+ - Web Application Icons
261
+
262
+ - name: volume-down
263
+ id: volume-down
264
+ unicode: f027
265
+ created: 1.0
266
+ categories:
267
+ - Web Application Icons
268
+
269
+ - name: volume-up
270
+ id: volume-up
271
+ unicode: f028
272
+ created: 1.0
273
+ categories:
274
+ - Web Application Icons
275
+
276
+ - name: qrcode
277
+ id: qrcode
278
+ unicode: f029
279
+ created: 1.0
280
+ categories:
281
+ - Web Application Icons
282
+
283
+ - name: barcode
284
+ id: barcode
285
+ unicode: f02a
286
+ created: 1.0
287
+ categories:
288
+ - Web Application Icons
289
+
290
+ - name: tag
291
+ id: tag
292
+ unicode: f02b
293
+ created: 1.0
294
+ categories:
295
+ - Web Application Icons
296
+
297
+ - name: tags
298
+ id: tags
299
+ unicode: f02c
300
+ created: 1.0
301
+ categories:
302
+ - Web Application Icons
303
+
304
+ - name: book
305
+ id: book
306
+ unicode: f02d
307
+ created: 1.0
308
+ categories:
309
+ - Web Application Icons
310
+
311
+ - name: bookmark
312
+ id: bookmark
313
+ unicode: f02e
314
+ created: 1.0
315
+ categories:
316
+ - Web Application Icons
317
+
318
+ - name: print
319
+ id: print
320
+ unicode: f02f
321
+ created: 1.0
322
+ categories:
323
+ - Web Application Icons
324
+
325
+
326
+ - name: camera
327
+ id: camera
328
+ unicode: f030
329
+ created: 1.0
330
+ categories:
331
+ - Web Application Icons
332
+
333
+ - name: font
334
+ id: font
335
+ unicode: f031
336
+ created: 1.0
337
+ categories:
338
+ - Text Editor Icons
339
+
340
+ - name: bold
341
+ id: bold
342
+ unicode: f032
343
+ created: 1.0
344
+ categories:
345
+ - Text Editor Icons
346
+
347
+ - name: italic
348
+ id: italic
349
+ unicode: f033
350
+ created: 1.0
351
+ categories:
352
+ - Text Editor Icons
353
+
354
+ - name: text-height
355
+ id: text-height
356
+ unicode: f034
357
+ created: 1.0
358
+ categories:
359
+ - Text Editor Icons
360
+
361
+ - name: text-width
362
+ id: text-width
363
+ unicode: f035
364
+ created: 1.0
365
+ categories:
366
+ - Text Editor Icons
367
+
368
+ - name: align-left
369
+ id: align-left
370
+ unicode: f036
371
+ created: 1.0
372
+ categories:
373
+ - Text Editor Icons
374
+
375
+ - name: align-center
376
+ id: align-center
377
+ unicode: f037
378
+ created: 1.0
379
+ categories:
380
+ - Text Editor Icons
381
+
382
+ - name: align-right
383
+ id: align-right
384
+ unicode: f038
385
+ created: 1.0
386
+ categories:
387
+ - Text Editor Icons
388
+
389
+ - name: align-justify
390
+ id: align-justify
391
+ unicode: f039
392
+ created: 1.0
393
+ categories:
394
+ - Text Editor Icons
395
+
396
+ - name: list
397
+ id: list
398
+ unicode: f03a
399
+ created: 1.0
400
+ categories:
401
+ - Text Editor Icons
402
+
403
+ - name: indent-left
404
+ id: indent-left
405
+ unicode: f03b
406
+ created: 1.0
407
+ categories:
408
+ - Text Editor Icons
409
+
410
+ - name: indent-right
411
+ id: indent-right
412
+ unicode: f03c
413
+ created: 1.0
414
+ categories:
415
+ - Text Editor Icons
416
+
417
+ - name: facetime-video
418
+ id: facetime-video
419
+ unicode: f03d
420
+ created: 1.0
421
+ categories:
422
+ - Web Application Icons
423
+
424
+ - name: picture
425
+ id: picture
426
+ unicode: f03e
427
+ created: 1.0
428
+ categories:
429
+ - Web Application Icons
430
+
431
+
432
+ - name: pencil
433
+ id: pencil
434
+ unicode: f040
435
+ created: 1.0
436
+ categories:
437
+ - Web Application Icons
438
+
439
+ - name: map-marker
440
+ id: map-marker
441
+ unicode: f041
442
+ created: 1.0
443
+ categories:
444
+ - Web Application Icons
445
+
446
+ - name: adjust
447
+ id: adjust
448
+ unicode: f042
449
+ created: 1.0
450
+ categories:
451
+ - Web Application Icons
452
+
453
+ - name: tint
454
+ id: tint
455
+ unicode: f043
456
+ created: 1.0
457
+ categories:
458
+ - Web Application Icons
459
+
460
+ - name: edit
461
+ id: edit
462
+ unicode: f044
463
+ created: 1.0
464
+ categories:
465
+ - Web Application Icons
466
+
467
+ - name: share
468
+ id: share
469
+ unicode: f045
470
+ created: 1.0
471
+ categories:
472
+ - Web Application Icons
473
+
474
+ - name: check
475
+ id: check
476
+ unicode: f046
477
+ created: 1.0
478
+ categories:
479
+ - Web Application Icons
480
+
481
+ - name: move
482
+ id: move
483
+ unicode: f047
484
+ created: 1.0
485
+ categories:
486
+ - Web Application Icons
487
+
488
+ - name: step-backward
489
+ id: step-backward
490
+ unicode: f048
491
+ created: 1.0
492
+ categories:
493
+ - Video Player Icons
494
+
495
+ - name: fast-backward
496
+ id: fast-backward
497
+ unicode: f049
498
+ created: 1.0
499
+ categories:
500
+ - Video Player Icons
501
+
502
+ - name: backward
503
+ id: backward
504
+ unicode: f04a
505
+ created: 1.0
506
+ categories:
507
+ - Video Player Icons
508
+
509
+ - name: play
510
+ id: play
511
+ unicode: f04b
512
+ created: 1.0
513
+ categories:
514
+ - Video Player Icons
515
+
516
+ - name: pause
517
+ id: pause
518
+ unicode: f04c
519
+ created: 1.0
520
+ categories:
521
+ - Video Player Icons
522
+
523
+ - name: stop
524
+ id: stop
525
+ unicode: f04d
526
+ created: 1.0
527
+ categories:
528
+ - Video Player Icons
529
+
530
+ - name: forward
531
+ id: forward
532
+ unicode: f04e
533
+ created: 1.0
534
+ categories:
535
+ - Video Player Icons
536
+
537
+
538
+ - name: fast-forward
539
+ id: fast-forward
540
+ unicode: f050
541
+ created: 1.0
542
+ categories:
543
+ - Video Player Icons
544
+
545
+ - name: step-forward
546
+ id: step-forward
547
+ unicode: f051
548
+ created: 1.0
549
+ categories:
550
+ - Video Player Icons
551
+
552
+ - name: eject
553
+ id: eject
554
+ unicode: f052
555
+ created: 1.0
556
+ categories:
557
+ - Video Player Icons
558
+
559
+ - name: chevron-left
560
+ id: chevron-left
561
+ unicode: f053
562
+ created: 1.0
563
+ categories:
564
+ - Directional Icons
565
+
566
+ - name: chevron-right
567
+ id: chevron-right
568
+ unicode: f054
569
+ created: 1.0
570
+ categories:
571
+ - Directional Icons
572
+
573
+ - name: plus-sign
574
+ id: plus-sign
575
+ unicode: f055
576
+ created: 1.0
577
+ categories:
578
+ - Web Application Icons
579
+
580
+ - name: minus-sign
581
+ id: minus-sign
582
+ unicode: f056
583
+ created: 1.0
584
+ categories:
585
+ - Web Application Icons
586
+
587
+ - name: remove-sign
588
+ id: remove-sign
589
+ unicode: f057
590
+ created: 1.0
591
+ categories:
592
+ - Web Application Icons
593
+
594
+ - name: ok-sign
595
+ id: ok-sign
596
+ unicode: f058
597
+ created: 1.0
598
+ categories:
599
+ - Web Application Icons
600
+
601
+ - name: question-sign
602
+ id: question-sign
603
+ unicode: f059
604
+ created: 1.0
605
+ categories:
606
+ - Web Application Icons
607
+
608
+ - name: info-sign
609
+ id: info-sign
610
+ unicode: f05a
611
+ created: 1.0
612
+ categories:
613
+ - Web Application Icons
614
+
615
+ - name: screenshot
616
+ id: screenshot
617
+ unicode: f05b
618
+ created: 1.0
619
+ categories:
620
+ - Web Application Icons
621
+
622
+ - name: remove-circle
623
+ id: remove-circle
624
+ unicode: f05c
625
+ created: 1.0
626
+ categories:
627
+ - Web Application Icons
628
+
629
+ - name: ok-circle
630
+ id: ok-circle
631
+ unicode: f05d
632
+ created: 1.0
633
+ categories:
634
+ - Web Application Icons
635
+
636
+ - name: ban-circle
637
+ id: ban-circle
638
+ unicode: f05e
639
+ created: 1.0
640
+ categories:
641
+ - Web Application Icons
642
+
643
+
644
+ - name: arrow-left
645
+ id: arrow-left
646
+ unicode: f060
647
+ created: 1.0
648
+ categories:
649
+ - Directional Icons
650
+
651
+ - name: arrow-right
652
+ id: arrow-right
653
+ unicode: f061
654
+ created: 1.0
655
+ categories:
656
+ - Directional Icons
657
+
658
+ - name: arrow-up
659
+ id: arrow-up
660
+ unicode: f062
661
+ created: 1.0
662
+ categories:
663
+ - Directional Icons
664
+
665
+ - name: arrow-down
666
+ id: arrow-down
667
+ unicode: f063
668
+ created: 1.0
669
+ categories:
670
+ - Directional Icons
671
+
672
+ - name: share-alt
673
+ id: share-alt
674
+ unicode: f064
675
+ created: 1.0
676
+ aliases:
677
+ - mail-forward
678
+ categories:
679
+ - Web Application Icons
680
+
681
+ - name: resize-full
682
+ id: resize-full
683
+ unicode: f065
684
+ created: 1.0
685
+ categories:
686
+ - Video Player Icons
687
+
688
+ - name: resize-small
689
+ id: resize-small
690
+ unicode: f066
691
+ created: 1.0
692
+ categories:
693
+ - Video Player Icons
694
+
695
+ - name: plus
696
+ id: plus
697
+ unicode: f067
698
+ created: 1.0
699
+ categories:
700
+ - Web Application Icons
701
+
702
+ - name: minus
703
+ id: minus
704
+ unicode: f068
705
+ created: 1.0
706
+ categories:
707
+ - Web Application Icons
708
+
709
+ - name: asterisk
710
+ id: asterisk
711
+ unicode: f069
712
+ created: 1.0
713
+ categories:
714
+ - Web Application Icons
715
+
716
+ - name: exclamation-sign
717
+ id: exclamation-sign
718
+ unicode: f06a
719
+ created: 1.0
720
+ categories:
721
+ - Web Application Icons
722
+
723
+ - name: gift
724
+ id: gift
725
+ unicode: f06b
726
+ created: 1.0
727
+ categories:
728
+ - Web Application Icons
729
+
730
+ - name: leaf
731
+ id: leaf
732
+ unicode: f06c
733
+ created: 1.0
734
+ categories:
735
+ - Web Application Icons
736
+
737
+ - name: fire
738
+ id: fire
739
+ unicode: f06d
740
+ created: 1.0
741
+ categories:
742
+ - Web Application Icons
743
+
744
+ - name: eye-open
745
+ id: eye-open
746
+ unicode: f06e
747
+ created: 1.0
748
+ categories:
749
+ - Web Application Icons
750
+
751
+
752
+ - name: eye-close
753
+ id: eye-close
754
+ unicode: f070
755
+ created: 1.0
756
+ categories:
757
+ - Web Application Icons
758
+
759
+ - name: warning-sign
760
+ id: warning-sign
761
+ unicode: f071
762
+ created: 1.0
763
+ categories:
764
+ - Web Application Icons
765
+
766
+ - name: plane
767
+ id: plane
768
+ unicode: f072
769
+ created: 1.0
770
+ categories:
771
+ - Web Application Icons
772
+
773
+ - name: calendar
774
+ id: calendar
775
+ unicode: f073
776
+ created: 1.0
777
+ categories:
778
+ - Web Application Icons
779
+
780
+ - name: random
781
+ id: random
782
+ unicode: f074
783
+ created: 1.0
784
+ categories:
785
+ - Web Application Icons
786
+
787
+ - name: comment
788
+ id: comment
789
+ unicode: f075
790
+ created: 1.0
791
+ categories:
792
+ - Web Application Icons
793
+
794
+ - name: magnet
795
+ id: magnet
796
+ unicode: f076
797
+ created: 1.0
798
+ categories:
799
+ - Web Application Icons
800
+
801
+ - name: chevron-up
802
+ id: chevron-up
803
+ unicode: f077
804
+ created: 1.0
805
+ categories:
806
+ - Directional Icons
807
+
808
+ - name: chevron-down
809
+ id: chevron-down
810
+ unicode: f078
811
+ created: 1.0
812
+ categories:
813
+ - Directional Icons
814
+
815
+ - name: retweet
816
+ id: retweet
817
+ unicode: f079
818
+ created: 1.0
819
+ categories:
820
+ - Web Application Icons
821
+
822
+ - name: shopping-cart
823
+ id: shopping-cart
824
+ unicode: f07a
825
+ created: 1.0
826
+ categories:
827
+ - Web Application Icons
828
+
829
+ - name: folder-close
830
+ id: folder-close
831
+ unicode: f07b
832
+ created: 1.0
833
+ categories:
834
+ - Web Application Icons
835
+
836
+ - name: folder-open
837
+ id: folder-open
838
+ unicode: f07c
839
+ created: 1.0
840
+ categories:
841
+ - Web Application Icons
842
+
843
+ - name: resize-vertical
844
+ id: resize-vertical
845
+ unicode: f07d
846
+ created: 1.0
847
+ categories:
848
+ - Web Application Icons
849
+
850
+ - name: resize-horizontal
851
+ id: resize-horizontal
852
+ unicode: f07e
853
+ created: 1.0
854
+ categories:
855
+ - Web Application Icons
856
+
857
+
858
+ - name: bar-chart
859
+ id: bar-chart
860
+ unicode: f080
861
+ created: 1.0
862
+ categories:
863
+ - Web Application Icons
864
+
865
+ - name: twitter-sign
866
+ id: twitter-sign
867
+ unicode: f081
868
+ created: 1.0
869
+ categories:
870
+ - Brand Icons
871
+
872
+ - name: facebook-sign
873
+ id: facebook-sign
874
+ unicode: f082
875
+ created: 1.0
876
+ categories:
877
+ - Brand Icons
878
+
879
+ - name: camera-retro
880
+ id: camera-retro
881
+ unicode: f083
882
+ created: 1.0
883
+ categories:
884
+ - Web Application Icons
885
+
886
+ - name: key
887
+ id: key
888
+ unicode: f084
889
+ created: 1.0
890
+ categories:
891
+ - Web Application Icons
892
+
893
+ - name: cogs
894
+ id: cogs
895
+ unicode: f085
896
+ created: 1.0
897
+ aliases:
898
+ - gears
899
+ categories:
900
+ - Web Application Icons
901
+
902
+ - name: comments
903
+ id: comments
904
+ unicode: f086
905
+ created: 1.0
906
+ categories:
907
+ - Web Application Icons
908
+
909
+ - name: thumbs-up-alt
910
+ id: thumbs-up-alt
911
+ unicode: f087
912
+ created: 1.0
913
+ categories:
914
+ - Web Application Icons
915
+
916
+ - name: thumbs-down-alt
917
+ id: thumbs-down-alt
918
+ unicode: f088
919
+ created: 1.0
920
+ categories:
921
+ - Web Application Icons
922
+
923
+ - name: star-half
924
+ id: star-half
925
+ unicode: f089
926
+ created: 1.0
927
+ categories:
928
+ - Web Application Icons
929
+
930
+ - name: heart-empty
931
+ id: heart-empty
932
+ unicode: f08a
933
+ created: 1.0
934
+ categories:
935
+ - Web Application Icons
936
+
937
+ - name: signout
938
+ id: signout
939
+ unicode: f08b
940
+ created: 1.0
941
+ categories:
942
+ - Web Application Icons
943
+
944
+ - name: linkedin-sign
945
+ id: linkedin-sign
946
+ unicode: f08c
947
+ created: 1.0
948
+ categories:
949
+ - Brand Icons
950
+
951
+ - name: pushpin
952
+ id: pushpin
953
+ unicode: f08d
954
+ created: 1.0
955
+ categories:
956
+ - Web Application Icons
957
+
958
+ - name: external-link
959
+ id: external-link
960
+ unicode: f08e
961
+ created: 1.0
962
+ categories:
963
+ - Web Application Icons
964
+
965
+
966
+ - name: signin
967
+ id: signin
968
+ unicode: f090
969
+ created: 1.0
970
+ categories:
971
+ - Web Application Icons
972
+
973
+ - name: trophy
974
+ id: trophy
975
+ unicode: f091
976
+ created: 1.0
977
+ categories:
978
+ - Web Application Icons
979
+
980
+ - name: github-sign
981
+ id: github-sign
982
+ unicode: f092
983
+ created: 1.0
984
+ categories:
985
+ - Brand Icons
986
+
987
+ - name: upload-alt
988
+ id: upload-alt
989
+ unicode: f093
990
+ created: 1.0
991
+ categories:
992
+ - Web Application Icons
993
+
994
+ - name: lemon
995
+ id: lemon
996
+ unicode: f094
997
+ created: 1.0
998
+ categories:
999
+ - Web Application Icons
1000
+
1001
+ - name: phone
1002
+ id: phone
1003
+ unicode: f095
1004
+ created: 2.0
1005
+ categories:
1006
+ - Web Application Icons
1007
+
1008
+ - name: check-empty
1009
+ id: check-empty
1010
+ unicode: f096
1011
+ created: 2.0
1012
+ aliases:
1013
+ - unchecked
1014
+ categories:
1015
+ - Web Application Icons
1016
+
1017
+ - name: bookmark-empty
1018
+ id: bookmark-empty
1019
+ unicode: f097
1020
+ created: 2.0
1021
+ categories:
1022
+ - Web Application Icons
1023
+
1024
+ - name: phone-sign
1025
+ id: phone-sign
1026
+ unicode: f098
1027
+ created: 2.0
1028
+ categories:
1029
+ - Web Application Icons
1030
+
1031
+ - name: twitter
1032
+ id: twitter
1033
+ unicode: f099
1034
+ created: 2.0
1035
+ categories:
1036
+ - Brand Icons
1037
+
1038
+ - name: facebook
1039
+ id: facebook
1040
+ unicode: f09a
1041
+ created: 2.0
1042
+ categories:
1043
+ - Brand Icons
1044
+
1045
+ - name: github
1046
+ id: github
1047
+ unicode: f09b
1048
+ created: 2.0
1049
+ categories:
1050
+ - Brand Icons
1051
+
1052
+ - name: unlock
1053
+ id: unlock
1054
+ unicode: f09c
1055
+ created: 2.0
1056
+ categories:
1057
+ - Web Application Icons
1058
+
1059
+ - name: credit-card
1060
+ id: credit-card
1061
+ unicode: f09d
1062
+ created: 2.0
1063
+ categories:
1064
+ - Web Application Icons
1065
+
1066
+ - name: rss
1067
+ id: rss
1068
+ unicode: f09e
1069
+ created: 2.0
1070
+ categories:
1071
+ - Web Application Icons
1072
+
1073
+
1074
+ - name: hdd
1075
+ id: hdd
1076
+ unicode: f0a0
1077
+ created: 2.0
1078
+ categories:
1079
+ - Web Application Icons
1080
+
1081
+ - name: bullhorn
1082
+ id: bullhorn
1083
+ unicode: f0a1
1084
+ created: 2.0
1085
+ categories:
1086
+ - Web Application Icons
1087
+
1088
+ - name: bell
1089
+ id: bell
1090
+ unicode: f0a2
1091
+ created: 2.0
1092
+ categories:
1093
+ - Web Application Icons
1094
+
1095
+ - name: certificate
1096
+ id: certificate
1097
+ unicode: f0a3
1098
+ created: 2.0
1099
+ categories:
1100
+ - Web Application Icons
1101
+
1102
+ - name: hand-right
1103
+ id: hand-right
1104
+ unicode: f0a4
1105
+ created: 2.0
1106
+ categories:
1107
+ - Directional Icons
1108
+
1109
+ - name: hand-left
1110
+ id: hand-left
1111
+ unicode: f0a5
1112
+ created: 2.0
1113
+ categories:
1114
+ - Directional Icons
1115
+
1116
+ - name: hand-up
1117
+ id: hand-up
1118
+ unicode: f0a6
1119
+ created: 2.0
1120
+ categories:
1121
+ - Directional Icons
1122
+
1123
+ - name: hand-down
1124
+ id: hand-down
1125
+ unicode: f0a7
1126
+ created: 2.0
1127
+ categories:
1128
+ - Directional Icons
1129
+
1130
+ - name: circle-arrow-left
1131
+ id: circle-arrow-left
1132
+ unicode: f0a8
1133
+ created: 2.0
1134
+ categories:
1135
+ - Directional Icons
1136
+
1137
+ - name: circle-arrow-right
1138
+ id: circle-arrow-right
1139
+ unicode: f0a9
1140
+ created: 2.0
1141
+ categories:
1142
+ - Directional Icons
1143
+
1144
+ - name: circle-arrow-up
1145
+ id: circle-arrow-up
1146
+ unicode: f0aa
1147
+ created: 2.0
1148
+ categories:
1149
+ - Directional Icons
1150
+
1151
+ - name: circle-arrow-down
1152
+ id: circle-arrow-down
1153
+ unicode: f0ab
1154
+ created: 2.0
1155
+ categories:
1156
+ - Directional Icons
1157
+
1158
+ - name: globe
1159
+ id: globe
1160
+ unicode: f0ac
1161
+ created: 2.0
1162
+ categories:
1163
+ - Web Application Icons
1164
+
1165
+ - name: wrench
1166
+ id: wrench
1167
+ unicode: f0ad
1168
+ created: 2.0
1169
+ categories:
1170
+ - Web Application Icons
1171
+
1172
+ - name: tasks
1173
+ id: tasks
1174
+ unicode: f0ae
1175
+ created: 2.0
1176
+ categories:
1177
+ - Web Application Icons
1178
+
1179
+
1180
+ - name: filter
1181
+ id: filter
1182
+ unicode: f0b0
1183
+ created: 2.0
1184
+ categories:
1185
+ - Web Application Icons
1186
+
1187
+ - name: briefcase
1188
+ id: briefcase
1189
+ unicode: f0b1
1190
+ created: 2.0
1191
+ categories:
1192
+ - Web Application Icons
1193
+
1194
+ - name: fullscreen
1195
+ id: fullscreen
1196
+ unicode: f0b2
1197
+ created: 2.0
1198
+ categories:
1199
+ - Video Player Icons
1200
+
1201
+
1202
+ - name: group
1203
+ id: group
1204
+ unicode: f0c0
1205
+ created: 2.0
1206
+ categories:
1207
+ - Web Application Icons
1208
+
1209
+ - name: link
1210
+ id: link
1211
+ unicode: f0c1
1212
+ created: 2.0
1213
+ categories:
1214
+ - Text Editor Icons
1215
+
1216
+ - name: cloud
1217
+ id: cloud
1218
+ unicode: f0c2
1219
+ created: 2.0
1220
+ categories:
1221
+ - Web Application Icons
1222
+
1223
+ - name: beaker
1224
+ id: beaker
1225
+ unicode: f0c3
1226
+ created: 2.0
1227
+ categories:
1228
+ - Web Application Icons
1229
+
1230
+ - name: cut
1231
+ id: cut
1232
+ unicode: f0c4
1233
+ created: 2.0
1234
+ categories:
1235
+ - Text Editor Icons
1236
+
1237
+ - name: copy
1238
+ id: copy
1239
+ unicode: f0c5
1240
+ created: 2.0
1241
+ categories:
1242
+ - Text Editor Icons
1243
+
1244
+ - name: paper-clip
1245
+ id: paper-clip
1246
+ unicode: f0c6
1247
+ created: 2.0
1248
+ aliases:
1249
+ - paperclip
1250
+ categories:
1251
+ - Text Editor Icons
1252
+
1253
+ - name: save
1254
+ id: save
1255
+ unicode: f0c7
1256
+ created: 2.0
1257
+ categories:
1258
+ - Text Editor Icons
1259
+
1260
+ - name: sign-blank
1261
+ id: sign-blank
1262
+ unicode: f0c8
1263
+ created: 2.0
1264
+ categories:
1265
+ - Web Application Icons
1266
+
1267
+ - name: reorder
1268
+ id: reorder
1269
+ unicode: f0c9
1270
+ created: 2.0
1271
+ categories:
1272
+ - Web Application Icons
1273
+
1274
+ - name: list-ul
1275
+ id: list-ul
1276
+ unicode: f0ca
1277
+ created: 2.0
1278
+ categories:
1279
+ - Text Editor Icons
1280
+
1281
+ - name: list-ol
1282
+ id: list-ol
1283
+ unicode: f0cb
1284
+ created: 2.0
1285
+ categories:
1286
+ - Text Editor Icons
1287
+
1288
+ - name: strikethrough
1289
+ id: strikethrough
1290
+ unicode: f0cc
1291
+ created: 2.0
1292
+ categories:
1293
+ - Text Editor Icons
1294
+
1295
+ - name: underline
1296
+ id: underline
1297
+ unicode: f0cd
1298
+ created: 2.0
1299
+ categories:
1300
+ - Text Editor Icons
1301
+
1302
+ - name: table
1303
+ id: table
1304
+ unicode: f0ce
1305
+ created: 2.0
1306
+ categories:
1307
+ - Text Editor Icons
1308
+
1309
+
1310
+ - name: magic
1311
+ id: magic
1312
+ unicode: f0d0
1313
+ created: 2.0
1314
+ categories:
1315
+ - Web Application Icons
1316
+
1317
+ - name: truck
1318
+ id: truck
1319
+ unicode: f0d1
1320
+ created: 2.0
1321
+ categories:
1322
+ - Web Application Icons
1323
+
1324
+ - name: pinterest
1325
+ id: pinterest
1326
+ unicode: f0d2
1327
+ created: 2.0
1328
+ categories:
1329
+ - Brand Icons
1330
+
1331
+ - name: pinterest-sign
1332
+ id: pinterest-sign
1333
+ unicode: f0d3
1334
+ created: 2.0
1335
+ categories:
1336
+ - Brand Icons
1337
+
1338
+ - name: google-plus-sign
1339
+ id: google-plus-sign
1340
+ unicode: f0d4
1341
+ created: 2.0
1342
+ categories:
1343
+ - Brand Icons
1344
+
1345
+ - name: google-plus
1346
+ id: google-plus
1347
+ unicode: f0d5
1348
+ created: 2.0
1349
+ categories:
1350
+ - Brand Icons
1351
+
1352
+ - name: money
1353
+ id: money
1354
+ unicode: f0d6
1355
+ created: 2.0
1356
+ categories:
1357
+ - Web Application Icons
1358
+
1359
+ - name: caret-down
1360
+ id: caret-down
1361
+ unicode: f0d7
1362
+ created: 2.0
1363
+ categories:
1364
+ - Directional Icons
1365
+
1366
+ - name: caret-up
1367
+ id: caret-up
1368
+ unicode: f0d8
1369
+ created: 2.0
1370
+ categories:
1371
+ - Directional Icons
1372
+
1373
+ - name: caret-left
1374
+ id: caret-left
1375
+ unicode: f0d9
1376
+ created: 2.0
1377
+ categories:
1378
+ - Directional Icons
1379
+
1380
+ - name: caret-right
1381
+ id: caret-right
1382
+ unicode: f0da
1383
+ created: 2.0
1384
+ categories:
1385
+ - Directional Icons
1386
+
1387
+ - name: columns
1388
+ id: columns
1389
+ unicode: f0db
1390
+ created: 2.0
1391
+ categories:
1392
+ - Text Editor Icons
1393
+
1394
+ - name: sort
1395
+ id: sort
1396
+ unicode: f0dc
1397
+ created: 2.0
1398
+ categories:
1399
+ - Web Application Icons
1400
+
1401
+ - name: sort-down
1402
+ id: sort-down
1403
+ unicode: f0dd
1404
+ created: 2.0
1405
+ categories:
1406
+ - Web Application Icons
1407
+
1408
+ - name: sort-up
1409
+ id: sort-up
1410
+ unicode: f0de
1411
+ created: 2.0
1412
+ categories:
1413
+ - Web Application Icons
1414
+
1415
+
1416
+ - name: Envelope
1417
+ id: envelope
1418
+ unicode: f0e0
1419
+ created: 2.0
1420
+ categories:
1421
+ - Web Application Icons
1422
+
1423
+ - name: linkedin
1424
+ id: linkedin
1425
+ unicode: f0e1
1426
+ created: 2.0
1427
+ categories:
1428
+ - Brand Icons
1429
+
1430
+
1431
+ - name: undo
1432
+ id: undo
1433
+ unicode: f0e2
1434
+ created: 2.0
1435
+ aliases:
1436
+ - rotate-left
1437
+ categories:
1438
+ - Text Editor Icons
1439
+
1440
+ - name: legal
1441
+ id: legal
1442
+ unicode: f0e3
1443
+ created: 2.0
1444
+ categories:
1445
+ - Web Application Icons
1446
+
1447
+ - name: dashboard
1448
+ id: dashboard
1449
+ unicode: f0e4
1450
+ created: 2.0
1451
+ categories:
1452
+ - Web Application Icons
1453
+
1454
+ - name: comment-alt
1455
+ id: comment-alt
1456
+ unicode: f0e5
1457
+ created: 2.0
1458
+ categories:
1459
+ - Web Application Icons
1460
+
1461
+ - name: comments-alt
1462
+ id: comments-alt
1463
+ unicode: f0e6
1464
+ created: 2.0
1465
+ categories:
1466
+ - Web Application Icons
1467
+
1468
+ - name: bolt
1469
+ id: bolt
1470
+ unicode: f0e7
1471
+ created: 2.0
1472
+ categories:
1473
+ - Web Application Icons
1474
+
1475
+ - name: sitemap
1476
+ id: sitemap
1477
+ unicode: f0e8
1478
+ created: 2.0
1479
+ categories:
1480
+ - Web Application Icons
1481
+
1482
+ - name: umbrella
1483
+ id: umbrella
1484
+ unicode: f0e9
1485
+ created: 2.0
1486
+ categories:
1487
+ - Web Application Icons
1488
+
1489
+ - name: paste
1490
+ id: paste
1491
+ unicode: f0ea
1492
+ created: 2.0
1493
+ categories:
1494
+ - Text Editor Icons
1495
+
1496
+ - name: lightbulb
1497
+ id: lightbulb
1498
+ unicode: f0eb
1499
+ created: 3.0
1500
+ categories:
1501
+ - Web Application Icons
1502
+
1503
+ - name: exchange
1504
+ id: exchange
1505
+ unicode: f0ec
1506
+ created: 3.0
1507
+ categories:
1508
+ - Web Application Icons
1509
+
1510
+ - name: cloud-download
1511
+ id: cloud-download
1512
+ unicode: f0ed
1513
+ created: 3.0
1514
+ categories:
1515
+ - Web Application Icons
1516
+
1517
+ - name: cloud-upload
1518
+ id: cloud-upload
1519
+ unicode: f0ee
1520
+ created: 3.0
1521
+ categories:
1522
+ - Web Application Icons
1523
+
1524
+
1525
+ - name: user-md
1526
+ id: user-md
1527
+ unicode: f0f0
1528
+ created: 2.0
1529
+ categories:
1530
+ - Medical Icons
1531
+
1532
+ - name: stethoscope
1533
+ id: stethoscope
1534
+ unicode: f0f1
1535
+ created: 3.0
1536
+ categories:
1537
+ - Medical Icons
1538
+
1539
+ - name: suitcase
1540
+ id: suitcase
1541
+ unicode: f0f2
1542
+ created: 3.0
1543
+ categories:
1544
+ - Web Application Icons
1545
+
1546
+ - name: bell-alt
1547
+ id: bell-alt
1548
+ unicode: f0f3
1549
+ created: 3.0
1550
+ categories:
1551
+ - Web Application Icons
1552
+
1553
+ - name: coffee
1554
+ id: coffee
1555
+ unicode: f0f4
1556
+ created: 3.0
1557
+ categories:
1558
+ - Web Application Icons
1559
+
1560
+ - name: food
1561
+ id: food
1562
+ unicode: f0f5
1563
+ created: 3.0
1564
+ categories:
1565
+ - Web Application Icons
1566
+
1567
+ - name: file-text-alt
1568
+ id: file-text-alt
1569
+ unicode: f0f6
1570
+ created: 3.0
1571
+ categories:
1572
+ - Text Editor Icons
1573
+
1574
+ - name: building
1575
+ id: building
1576
+ unicode: f0f7
1577
+ created: 3.0
1578
+ categories:
1579
+ - Web Application Icons
1580
+
1581
+ - name: hospital
1582
+ id: hospital
1583
+ unicode: f0f8
1584
+ created: 3.0
1585
+ categories:
1586
+ - Medical Icons
1587
+
1588
+ - name: ambulance
1589
+ id: ambulance
1590
+ unicode: f0f9
1591
+ created: 3.0
1592
+ categories:
1593
+ - Medical Icons
1594
+
1595
+ - name: medkit
1596
+ id: medkit
1597
+ unicode: f0fa
1598
+ created: 3.0
1599
+ categories:
1600
+ - Medical Icons
1601
+
1602
+ - name: fighter-jet
1603
+ id: fighter-jet
1604
+ unicode: f0fb
1605
+ created: 3.0
1606
+ categories:
1607
+ - Web Application Icons
1608
+
1609
+ - name: beer
1610
+ id: beer
1611
+ unicode: f0fc
1612
+ created: 3.0
1613
+ categories:
1614
+ - Web Application Icons
1615
+
1616
+ - name: h-sign
1617
+ id: h-sign
1618
+ unicode: f0fd
1619
+ created: 3.0
1620
+ categories:
1621
+ - Medical Icons
1622
+
1623
+ - name: plus-sign-alt
1624
+ id: plus-sign-alt
1625
+ unicode: f0fe
1626
+ created: 3.0
1627
+ categories:
1628
+ - Medical Icons
1629
+ - Web Application Icons
1630
+
1631
+
1632
+ - name: double-angle-left
1633
+ id: double-angle-left
1634
+ unicode: f100
1635
+ created: 3.0
1636
+ categories:
1637
+ - Directional Icons
1638
+
1639
+ - name: double-angle-right
1640
+ id: double-angle-right
1641
+ unicode: f101
1642
+ created: 3.0
1643
+ categories:
1644
+ - Directional Icons
1645
+
1646
+ - name: double-angle-up
1647
+ id: double-angle-up
1648
+ unicode: f102
1649
+ created: 3.0
1650
+ categories:
1651
+ - Directional Icons
1652
+
1653
+ - name: double-angle-down
1654
+ id: double-angle-down
1655
+ unicode: f103
1656
+ created: 3.0
1657
+ categories:
1658
+ - Directional Icons
1659
+
1660
+ - name: angle-left
1661
+ id: angle-left
1662
+ unicode: f104
1663
+ created: 3.0
1664
+ categories:
1665
+ - Directional Icons
1666
+
1667
+ - name: angle-right
1668
+ id: angle-right
1669
+ unicode: f105
1670
+ created: 3.0
1671
+ categories:
1672
+ - Directional Icons
1673
+
1674
+ - name: angle-up
1675
+ id: angle-up
1676
+ unicode: f106
1677
+ created: 3.0
1678
+ categories:
1679
+ - Directional Icons
1680
+
1681
+ - name: angle-down
1682
+ id: angle-down
1683
+ unicode: f107
1684
+ created: 3.0
1685
+ categories:
1686
+ - Directional Icons
1687
+
1688
+ - name: desktop
1689
+ id: desktop
1690
+ unicode: f108
1691
+ created: 3.0
1692
+ categories:
1693
+ - Web Application Icons
1694
+
1695
+ - name: laptop
1696
+ id: laptop
1697
+ unicode: f109
1698
+ created: 3.0
1699
+ categories:
1700
+ - Web Application Icons
1701
+
1702
+ - name: tablet
1703
+ id: tablet
1704
+ unicode: f10a
1705
+ created: 3.0
1706
+ categories:
1707
+ - Web Application Icons
1708
+
1709
+ - name: mobile-phone
1710
+ id: mobile-phone
1711
+ unicode: f10b
1712
+ created: 3.0
1713
+ categories:
1714
+ - Web Application Icons
1715
+
1716
+ - name: circle-blank
1717
+ id: circle-blank
1718
+ unicode: f10c
1719
+ created: 3.0
1720
+ categories:
1721
+ - Web Application Icons
1722
+
1723
+ - name: quote-left
1724
+ id: quote-left
1725
+ unicode: f10d
1726
+ created: 3.0
1727
+ categories:
1728
+ - Web Application Icons
1729
+
1730
+ - name: quote-right
1731
+ id: quote-right
1732
+ unicode: f10e
1733
+ created: 3.0
1734
+ categories:
1735
+ - Web Application Icons
1736
+
1737
+
1738
+ - name: spinner
1739
+ id: spinner
1740
+ unicode: f110
1741
+ created: 3.0
1742
+ categories:
1743
+ - Web Application Icons
1744
+
1745
+ - name: circle
1746
+ id: circle
1747
+ unicode: f111
1748
+ created: 3.0
1749
+ categories:
1750
+ - Web Application Icons
1751
+
1752
+ - name: reply
1753
+ id: reply
1754
+ unicode: f112
1755
+ created: 3.0
1756
+ aliases:
1757
+ - mail-reply
1758
+ categories:
1759
+ - Web Application Icons
1760
+
1761
+ - name: github-alt
1762
+ id: github-alt
1763
+ unicode: f113
1764
+ created: 3.0
1765
+ categories:
1766
+ - Brand Icons
1767
+
1768
+ - name: folder-close-alt
1769
+ id: folder-close-alt
1770
+ unicode: f114
1771
+ created: 3.0
1772
+ categories:
1773
+ - Web Application Icons
1774
+
1775
+ - name: folder-open-alt
1776
+ id: folder-open-alt
1777
+ unicode: f115
1778
+ created: 3.0
1779
+ categories:
1780
+ - Web Application Icons
1781
+
1782
+ - name: expand-alt
1783
+ id: expand-alt
1784
+ unicode: f116
1785
+ created: 3.1
1786
+ categories:
1787
+ - Web Application Icons
1788
+
1789
+ - name: collapse-alt
1790
+ id: collapse-alt
1791
+ unicode: f117
1792
+ created: 3.1
1793
+ categories:
1794
+ - Web Application Icons
1795
+
1796
+ - name: smile
1797
+ id: smile
1798
+ unicode: f118
1799
+ created: 3.1
1800
+ categories:
1801
+ - Web Application Icons
1802
+
1803
+ - name: frown
1804
+ id: frown
1805
+ unicode: f119
1806
+ created: 3.1
1807
+ categories:
1808
+ - Web Application Icons
1809
+
1810
+ - name: meh
1811
+ id: meh
1812
+ unicode: f11a
1813
+ created: 3.1
1814
+ categories:
1815
+ - Web Application Icons
1816
+
1817
+ - name: gamepad
1818
+ id: gamepad
1819
+ unicode: f11b
1820
+ created: 3.1
1821
+ categories:
1822
+ - Web Application Icons
1823
+
1824
+ - name: keyboard
1825
+ id: keyboard
1826
+ unicode: f11c
1827
+ created: 3.1
1828
+ categories:
1829
+ - Web Application Icons
1830
+
1831
+ - name: flag-alt
1832
+ id: flag-alt
1833
+ unicode: f11d
1834
+ created: 3.1
1835
+ categories:
1836
+ - Web Application Icons
1837
+
1838
+ - name: flag-checkered
1839
+ id: flag-checkered
1840
+ unicode: f11e
1841
+ created: 3.1
1842
+ categories:
1843
+ - Web Application Icons
1844
+
1845
+
1846
+ - name: terminal
1847
+ id: terminal
1848
+ unicode: f120
1849
+ created: 3.1
1850
+ categories:
1851
+ - Web Application Icons
1852
+
1853
+ - name: code
1854
+ id: code
1855
+ unicode: f121
1856
+ created: 3.1
1857
+ categories:
1858
+ - Web Application Icons
1859
+
1860
+ - name: reply-all
1861
+ id: reply-all
1862
+ unicode: f122
1863
+ created: 3.1
1864
+ categories:
1865
+ - Web Application Icons
1866
+
1867
+ - name: mail-reply-all
1868
+ id: mail-reply-all
1869
+ unicode: f122
1870
+ created: 3.1
1871
+ categories:
1872
+ - Web Application Icons
1873
+
1874
+ - name: star-half-empty
1875
+ id: star-half-empty
1876
+ unicode: f123
1877
+ created: 3.1
1878
+ aliases:
1879
+ - star-half-full
1880
+ categories:
1881
+ - Web Application Icons
1882
+
1883
+ - name: location-arrow
1884
+ id: location-arrow
1885
+ unicode: f124
1886
+ created: 3.1
1887
+ categories:
1888
+ - Web Application Icons
1889
+
1890
+ - name: crop
1891
+ id: crop
1892
+ unicode: f125
1893
+ created: 3.1
1894
+ categories:
1895
+ - Web Application Icons
1896
+
1897
+ - name: code-fork
1898
+ id: code-fork
1899
+ unicode: f126
1900
+ created: 3.1
1901
+ categories:
1902
+ - Web Application Icons
1903
+
1904
+ - name: unlink
1905
+ id: unlink
1906
+ unicode: f127
1907
+ created: 3.1
1908
+ categories:
1909
+ - Text Editor Icons
1910
+
1911
+ - name: question
1912
+ id: question
1913
+ unicode: f128
1914
+ created: 3.1
1915
+ categories:
1916
+ - Web Application Icons
1917
+
1918
+ - name: info
1919
+ id: info
1920
+ unicode: f129
1921
+ created: 3.1
1922
+ categories:
1923
+ - Web Application Icons
1924
+
1925
+ - name: exclamation
1926
+ id: exclamation
1927
+ unicode: f12a
1928
+ created: 3.1
1929
+ categories:
1930
+ - Web Application Icons
1931
+
1932
+ - name: superscript
1933
+ id: superscript
1934
+ unicode: f12b
1935
+ created: 3.1
1936
+ categories:
1937
+ - Web Application Icons
1938
+
1939
+ - name: subscript
1940
+ id: subscript
1941
+ unicode: f12c
1942
+ created: 3.1
1943
+ categories:
1944
+ - Web Application Icons
1945
+
1946
+ - name: eraser
1947
+ id: eraser
1948
+ unicode: f12d
1949
+ created: 3.1
1950
+ categories:
1951
+ - Text Editor Icons
1952
+ - Web Application Icons
1953
+
1954
+ - name: puzzle-piece
1955
+ id: puzzle-piece
1956
+ unicode: f12e
1957
+ created: 3.1
1958
+ categories:
1959
+ - Web Application Icons
1960
+
1961
+
1962
+ - name: microphone
1963
+ id: microphone
1964
+ unicode: f130
1965
+ created: 3.1
1966
+ categories:
1967
+ - Web Application Icons
1968
+
1969
+ - name: microphone-off
1970
+ id: microphone-off
1971
+ unicode: f131
1972
+ created: 3.1
1973
+ categories:
1974
+ - Web Application Icons
1975
+
1976
+ - name: shield
1977
+ id: shield
1978
+ unicode: f132
1979
+ created: 3.1
1980
+ categories:
1981
+ - Web Application Icons
1982
+
1983
+ - name: calendar-empty
1984
+ id: calendar-empty
1985
+ unicode: f133
1986
+ created: 3.1
1987
+ categories:
1988
+ - Web Application Icons
1989
+
1990
+ - name: fire-extinguisher
1991
+ id: fire-extinguisher
1992
+ unicode: f134
1993
+ created: 3.1
1994
+ categories:
1995
+ - Web Application Icons
1996
+
1997
+ - name: rocket
1998
+ id: rocket
1999
+ unicode: f135
2000
+ created: 3.1
2001
+ categories:
2002
+ - Web Application Icons
2003
+
2004
+ - name: MaxCDN
2005
+ id: maxcdn
2006
+ unicode: f136
2007
+ created: 3.1
2008
+ categories:
2009
+ - Brand Icons
2010
+
2011
+ - name: Chevron Sign Left
2012
+ id: chevron-sign-left
2013
+ unicode: f137
2014
+ created: 3.1
2015
+ categories:
2016
+ - Directional Icons
2017
+
2018
+ - name: Chevron Sign Right
2019
+ id: chevron-sign-right
2020
+ unicode: f138
2021
+ created: 3.1
2022
+ categories:
2023
+ - Directional Icons
2024
+
2025
+ - name: Chevron Sign Up
2026
+ id: chevron-sign-up
2027
+ unicode: f139
2028
+ created: 3.1
2029
+ categories:
2030
+ - Directional Icons
2031
+
2032
+ - name: Chevron Sign Down
2033
+ id: chevron-sign-down
2034
+ unicode: f13a
2035
+ created: 3.1
2036
+ categories:
2037
+ - Directional Icons
2038
+
2039
+ - name: HTML 5 Logo
2040
+ id: html5
2041
+ unicode: f13b
2042
+ created: 3.1
2043
+ categories:
2044
+ - Brand Icons
2045
+
2046
+ - name: CSS 3 Logo
2047
+ id: css3
2048
+ unicode: f13c
2049
+ created: 3.1
2050
+ categories:
2051
+ - Brand Icons
2052
+
2053
+ - name: Anchor
2054
+ id: anchor
2055
+ unicode: f13d
2056
+ created: 3.1
2057
+ categories:
2058
+ - Web Application Icons
2059
+
2060
+ - name: Unlock Alt
2061
+ id: unlock-alt
2062
+ unicode: f13e
2063
+ created: 3.1
2064
+ categories:
2065
+ - Web Application Icons
2066
+
2067
+
2068
+ - name: Bullseye
2069
+ id: bullseye
2070
+ unicode: f140
2071
+ created: 3.1
2072
+ categories:
2073
+ - Web Application Icons
2074
+
2075
+ - name: Horizontal Ellipsis
2076
+ id: ellipsis-horizontal
2077
+ unicode: f141
2078
+ created: 3.1
2079
+ categories:
2080
+ - Web Application Icons
2081
+
2082
+ - name: Vertical Ellipsis
2083
+ id: ellipsis-vertical
2084
+ unicode: f142
2085
+ created: 3.1
2086
+ categories:
2087
+ - Web Application Icons
2088
+
2089
+ - name: RSS Sign
2090
+ id: rss-sign
2091
+ unicode: f143
2092
+ created: 3.1
2093
+ categories:
2094
+ - Web Application Icons
2095
+
2096
+ - name: Play Sign
2097
+ id: play-sign
2098
+ unicode: f144
2099
+ created: 3.1
2100
+ categories:
2101
+ - Video Player Icons
2102
+
2103
+ - name: Ticket
2104
+ id: ticket
2105
+ unicode: f145
2106
+ created: 3.1
2107
+ categories:
2108
+ - Web Application Icons
2109
+
2110
+ - name: Minus Sign Alt
2111
+ id: minus-sign-alt
2112
+ unicode: f146
2113
+ created: 3.1
2114
+ categories:
2115
+ - Web Application Icons
2116
+
2117
+ - name: Check Minus
2118
+ id: check-minus
2119
+ unicode: f147
2120
+ created: 3.1
2121
+ categories:
2122
+ - Web Application Icons
2123
+
2124
+ - name: Level Up
2125
+ id: level-up
2126
+ unicode: f148
2127
+ created: 3.1
2128
+ categories:
2129
+ - Web Application Icons
2130
+
2131
+ - name: Level Down
2132
+ id: level-down
2133
+ unicode: f149
2134
+ created: 3.1
2135
+ categories:
2136
+ - Web Application Icons
2137
+
2138
+ - name: Check Sign
2139
+ id: check-sign
2140
+ unicode: f14a
2141
+ created: 3.1
2142
+ categories:
2143
+ - Web Application Icons
2144
+
2145
+ - name: Edit Sign
2146
+ id: edit-sign
2147
+ unicode: f14b
2148
+ created: 3.1
2149
+ categories:
2150
+ - Web Application Icons
2151
+
2152
+ - name: Exteral Link Sign
2153
+ id: external-link-sign
2154
+ unicode: f14c
2155
+ created: 3.1
2156
+ categories:
2157
+ - Web Application Icons
2158
+
2159
+ - name: Share Sign
2160
+ id: share-sign
2161
+ unicode: f14d
2162
+ created: 3.1
2163
+ categories:
2164
+ - Web Application Icons
2165
+
2166
+ - name: Compass
2167
+ id: compass
2168
+ unicode: f14e
2169
+ created: 3.2
2170
+ categories:
2171
+ - Web Application Icons
2172
+
2173
+
2174
+ - name: Collapse
2175
+ id: collapse
2176
+ unicode: f150
2177
+ created: 3.2
2178
+ categories:
2179
+ - Web Application Icons
2180
+
2181
+ - name: Collapse Top
2182
+ id: collapse-top
2183
+ unicode: f151
2184
+ created: 3.2
2185
+ categories:
2186
+ - Web Application Icons
2187
+
2188
+ - name: Expand
2189
+ id: expand
2190
+ unicode: f152
2191
+ created: 3.2
2192
+ categories:
2193
+ - Web Application Icons
2194
+
2195
+ - name: Euro (EUR)
2196
+ id: eur
2197
+ unicode: f153
2198
+ created: 3.2
2199
+ aliases:
2200
+ - euro
2201
+ categories:
2202
+ - Currency Icons
2203
+
2204
+ - name: GBP
2205
+ id: gbp
2206
+ unicode: f154
2207
+ created: 3.2
2208
+ categories:
2209
+ - Currency Icons
2210
+
2211
+ - name: US Dollar
2212
+ id: usd
2213
+ unicode: f155
2214
+ created: 3.2
2215
+ aliases:
2216
+ - dollar
2217
+ categories:
2218
+ - Currency Icons
2219
+
2220
+ - name: Indian Rupee (INR)
2221
+ id: inr
2222
+ unicode: f156
2223
+ created: 3.2
2224
+ aliases:
2225
+ - rupee
2226
+ categories:
2227
+ - Currency Icons
2228
+
2229
+ - name: Japanese Yen (JPY)
2230
+ id: jpy
2231
+ unicode: f157
2232
+ created: 3.2
2233
+ aliases:
2234
+ - yen
2235
+ categories:
2236
+ - Currency Icons
2237
+
2238
+ - name: Renminbi (CNY)
2239
+ id: cny
2240
+ unicode: f158
2241
+ created: 3.2
2242
+ aliases:
2243
+ - renminbi
2244
+ categories:
2245
+ - Currency Icons
2246
+
2247
+ - name: Korean Won (KRW)
2248
+ id: krw
2249
+ unicode: f159
2250
+ created: 3.2
2251
+ aliases:
2252
+ - won
2253
+ categories:
2254
+ - Currency Icons
2255
+
2256
+ - name: Bitcoin (BTC)
2257
+ id: btc
2258
+ unicode: f15a
2259
+ created: 3.2
2260
+ aliases:
2261
+ - bitcoin
2262
+ categories:
2263
+ - Currency Icons
2264
+ - Brand Icons
2265
+
2266
+ - name: File
2267
+ id: file
2268
+ unicode: f15b
2269
+ created: 3.2
2270
+ categories:
2271
+ - Text Editor Icons
2272
+
2273
+ - name: File Text
2274
+ id: file-text
2275
+ unicode: f15c
2276
+ created: 3.2
2277
+ categories:
2278
+ - Text Editor Icons
2279
+
2280
+ - name: Sort By Alphabet
2281
+ id: sort-by-alphabet
2282
+ unicode: f15d
2283
+ created: 3.2
2284
+ categories:
2285
+ - Web Application Icons
2286
+
2287
+ - name: Sort By Alphabet Alt
2288
+ id: sort-by-alphabet-alt
2289
+ unicode: f15e
2290
+ created: 3.2
2291
+ categories:
2292
+ - Web Application Icons
2293
+
2294
+
2295
+ - name: Sort By Attributes
2296
+ id: sort-by-attributes
2297
+ unicode: f160
2298
+ created: 3.2
2299
+ categories:
2300
+ - Web Application Icons
2301
+
2302
+ - name: Sort By Attributes Alt
2303
+ id: sort-by-attributes-alt
2304
+ unicode: f161
2305
+ created: 3.2
2306
+ categories:
2307
+ - Web Application Icons
2308
+
2309
+ - name: Sort By Order
2310
+ id: sort-by-order
2311
+ unicode: f162
2312
+ created: 3.2
2313
+ categories:
2314
+ - Web Application Icons
2315
+
2316
+ - name: Sort By Order Alt
2317
+ id: sort-by-order-alt
2318
+ unicode: f163
2319
+ created: 3.2
2320
+ categories:
2321
+ - Web Application Icons
2322
+
2323
+
2324
+ - name: thumbs-up
2325
+ id: thumbs-up
2326
+ unicode: f164
2327
+ created: 3.2
2328
+ categories:
2329
+ - Web Application Icons
2330
+
2331
+ - name: thumbs-down
2332
+ id: thumbs-down
2333
+ unicode: f165
2334
+ created: 3.2
2335
+ categories:
2336
+ - Web Application Icons
2337
+
2338
+ - name: YouTube Sign
2339
+ id: youtube-sign
2340
+ unicode: f166
2341
+ created: 3.2
2342
+ categories:
2343
+ - Brand Icons
2344
+
2345
+ - name: YouTube
2346
+ id: youtube
2347
+ unicode: f167
2348
+ created: 3.2
2349
+ categories:
2350
+ - Brand Icons
2351
+
2352
+ - name: Xing
2353
+ id: xing
2354
+ unicode: f168
2355
+ created: 3.2
2356
+ categories:
2357
+ - Brand Icons
2358
+
2359
+ - name: Xing Sign
2360
+ id: xing-sign
2361
+ unicode: f169
2362
+ created: 3.2
2363
+ categories:
2364
+ - Brand Icons
2365
+
2366
+ - name: YouTube Play
2367
+ id: youtube-play
2368
+ unicode: f16a
2369
+ created: 3.2
2370
+ categories:
2371
+ - Brand Icons
2372
+ - Video Player Icons
2373
+
2374
+ - name: Dropbox
2375
+ id: dropbox
2376
+ unicode: f16b
2377
+ created: 3.2
2378
+ categories:
2379
+ - Brand Icons
2380
+
2381
+ - name: Stack Exchange
2382
+ id: stackexchange
2383
+ unicode: f16c
2384
+ created: 3.2
2385
+ categories:
2386
+ - Brand Icons
2387
+
2388
+ - name: Instagram
2389
+ id: instagram
2390
+ unicode: f16d
2391
+ created: 3.2
2392
+ categories:
2393
+ - Brand Icons
2394
+
2395
+ - name: Flickr
2396
+ id: flickr
2397
+ unicode: f16e
2398
+ created: 3.2
2399
+ categories:
2400
+ - Brand Icons
2401
+
2402
+ - name: App.net
2403
+ id: adn
2404
+ unicode: f170
2405
+ created: 3.2
2406
+ categories:
2407
+ - Brand Icons
2408
+
2409
+ - name: Bitbucket
2410
+ id: bitbucket
2411
+ unicode: f171
2412
+ created: 3.2
2413
+ categories:
2414
+ - Brand Icons
2415
+
2416
+ - name: Bitbucket Sign
2417
+ id: bitbucket-sign
2418
+ unicode: f172
2419
+ created: 3.2
2420
+ categories:
2421
+ - Brand Icons
2422
+
2423
+ - name: Tumblr
2424
+ id: tumblr
2425
+ unicode: f173
2426
+ created: 3.2
2427
+ categories:
2428
+ - Brand Icons
2429
+
2430
+ - name: Tumblr Sign
2431
+ id: tumblr-sign
2432
+ unicode: f174
2433
+ created: 3.2
2434
+ categories:
2435
+ - Brand Icons
2436
+
2437
+ - name: Long Arrow Down
2438
+ id: long-arrow-down
2439
+ unicode: f175
2440
+ created: 3.2
2441
+ categories:
2442
+ - Directional Icons
2443
+
2444
+ - name: Long Arrow Up
2445
+ id: long-arrow-up
2446
+ unicode: f176
2447
+ created: 3.2
2448
+ categories:
2449
+ - Directional Icons
2450
+
2451
+ - name: Long Arrow Left
2452
+ id: long-arrow-left
2453
+ unicode: f177
2454
+ created: 3.2
2455
+ categories:
2456
+ - Directional Icons
2457
+
2458
+ - name: Long Arrow Right
2459
+ id: long-arrow-right
2460
+ unicode: f178
2461
+ created: 3.2
2462
+ categories:
2463
+ - Directional Icons
2464
+
2465
+ - name: Apple
2466
+ id: apple
2467
+ unicode: f179
2468
+ created: 3.2
2469
+ categories:
2470
+ - Brand Icons
2471
+
2472
+ - name: Windows
2473
+ id: windows
2474
+ unicode: f17a
2475
+ created: 3.2
2476
+ categories:
2477
+ - Brand Icons
2478
+
2479
+ - name: Android
2480
+ id: android
2481
+ unicode: f17b
2482
+ created: 3.2
2483
+ categories:
2484
+ - Brand Icons
2485
+
2486
+ - name: Linux
2487
+ id: linux
2488
+ unicode: f17c
2489
+ created: 3.2
2490
+ categories:
2491
+ - Brand Icons
2492
+
2493
+ - name: Dribbble
2494
+ id: dribbble
2495
+ unicode: f17d
2496
+ created: 3.2
2497
+ categories:
2498
+ - Brand Icons
2499
+
2500
+ - name: Skype
2501
+ id: skype
2502
+ unicode: f17e
2503
+ created: 3.2
2504
+ categories:
2505
+ - Brand Icons
2506
+
2507
+
2508
+ - name: Foursquare
2509
+ id: foursquare
2510
+ unicode: f180
2511
+ created: 3.2
2512
+ categories:
2513
+ - Brand Icons
2514
+
2515
+ - name: Trello
2516
+ id: trello
2517
+ unicode: f181
2518
+ created: 3.2
2519
+ categories:
2520
+ - Brand Icons
2521
+
2522
+ - name: Female
2523
+ id: female
2524
+ unicode: f182
2525
+ created: 3.2
2526
+ categories:
2527
+ - Web Application Icons
2528
+
2529
+ - name: Male
2530
+ id: male
2531
+ unicode: f183
2532
+ created: 3.2
2533
+ categories:
2534
+ - Web Application Icons
2535
+
2536
+ - name: Gittip
2537
+ id: gittip
2538
+ unicode: f184
2539
+ created: 3.2
2540
+ categories:
2541
+ - Brand Icons
2542
+
2543
+ - name: Sun
2544
+ id: sun
2545
+ unicode: f185
2546
+ created: 3.2
2547
+ categories:
2548
+ - Web Application Icons
2549
+
2550
+ - name: Moon
2551
+ id: moon
2552
+ unicode: f186
2553
+ created: 3.2
2554
+ categories:
2555
+ - Web Application Icons
2556
+
2557
+ - name: Archive
2558
+ id: archive
2559
+ unicode: f187
2560
+ created: 3.2
2561
+ categories:
2562
+ - Web Application Icons
2563
+
2564
+ - name: Bug
2565
+ id: bug
2566
+ unicode: f188
2567
+ created: 3.2
2568
+ categories:
2569
+ - Web Application Icons
2570
+
2571
+ - name: VK
2572
+ id: vk
2573
+ unicode: f189
2574
+ created: 3.2
2575
+ categories:
2576
+ - Brand Icons
2577
+
2578
+ - name: Weibo
2579
+ id: weibo
2580
+ unicode: f18a
2581
+ created: 3.2
2582
+ categories:
2583
+ - Brand Icons
2584
+
2585
+ - name: Renren
2586
+ id: renren
2587
+ unicode: f18b
2588
+ created: 3.2
2589
+ categories:
2590
+ - Brand Icons