locomotivecms_wagon 1.4.0 → 1.5.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (352) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +3 -0
  3. data/Gemfile +6 -2
  4. data/README.md +7 -1
  5. data/bin/wagon +3 -0
  6. data/generators/blank/Gemfile.tt +1 -3
  7. data/generators/blank/config/site.yml.tt +3 -3
  8. data/generators/bootstrap/config/site.yml.tt +3 -3
  9. data/generators/bootstrap3/Gemfile.tt +1 -3
  10. data/generators/bootstrap3/app/views/pages/index.liquid +21 -63
  11. data/generators/bootstrap3/app/views/pages/index.liquid.haml +15 -57
  12. data/generators/bootstrap3/config/deploy.yml +15 -15
  13. data/generators/bootstrap3/config/site.yml.tt +2 -2
  14. data/generators/bootstrap3/icon.png +0 -0
  15. data/generators/bootstrap3/public/fonts/glyphicons-halflings-regular.eot +0 -0
  16. data/generators/bootstrap3/public/fonts/glyphicons-halflings-regular.svg +201 -200
  17. data/generators/bootstrap3/public/fonts/glyphicons-halflings-regular.ttf +0 -0
  18. data/generators/bootstrap3/public/fonts/glyphicons-halflings-regular.woff +0 -0
  19. data/generators/{bootstrap2/app/content_types → bootstrap3/public/images}/.empty_directory +0 -0
  20. data/generators/bootstrap3/public/javascripts/bootstrap/affix.js +137 -0
  21. data/generators/bootstrap3/public/javascripts/bootstrap/alert.js +88 -0
  22. data/generators/bootstrap3/public/javascripts/bootstrap/button.js +107 -0
  23. data/generators/bootstrap3/public/javascripts/bootstrap/carousel.js +205 -0
  24. data/generators/bootstrap3/public/javascripts/bootstrap/collapse.js +170 -0
  25. data/generators/bootstrap3/public/javascripts/bootstrap/dropdown.js +147 -0
  26. data/generators/bootstrap3/public/javascripts/bootstrap/modal.js +243 -0
  27. data/generators/bootstrap3/public/javascripts/bootstrap/popover.js +110 -0
  28. data/generators/bootstrap3/public/javascripts/bootstrap/scrollspy.js +153 -0
  29. data/generators/bootstrap3/public/javascripts/bootstrap/tab.js +125 -0
  30. data/generators/bootstrap3/public/javascripts/bootstrap/tooltip.js +399 -0
  31. data/generators/bootstrap3/public/javascripts/bootstrap/transition.js +48 -0
  32. data/generators/bootstrap3/public/javascripts/bootstrap.min.js +12 -6
  33. data/generators/bootstrap3/public/stylesheets/application.css +1 -0
  34. data/generators/bootstrap3/public/stylesheets/application.css.scss +8 -0
  35. data/generators/bootstrap3/public/stylesheets/bootstrap/_alerts.scss +67 -0
  36. data/generators/bootstrap3/public/stylesheets/bootstrap/_badges.scss +55 -0
  37. data/generators/bootstrap3/public/stylesheets/bootstrap/_breadcrumbs.scss +26 -0
  38. data/generators/bootstrap3/public/stylesheets/bootstrap/_button-groups.scss +226 -0
  39. data/generators/bootstrap3/public/stylesheets/bootstrap/_buttons.scss +159 -0
  40. data/generators/bootstrap3/public/stylesheets/bootstrap/_carousel.scss +232 -0
  41. data/generators/bootstrap3/public/stylesheets/bootstrap/_close.scss +35 -0
  42. data/generators/bootstrap3/public/stylesheets/bootstrap/_code.scss +63 -0
  43. data/generators/bootstrap3/public/stylesheets/bootstrap/_component-animations.scss +29 -0
  44. data/generators/bootstrap3/public/stylesheets/bootstrap/_dropdowns.scss +213 -0
  45. data/generators/bootstrap3/public/stylesheets/bootstrap/_forms.scss +436 -0
  46. data/generators/bootstrap3/public/stylesheets/bootstrap/_glyphicons.scss +233 -0
  47. data/generators/bootstrap3/public/stylesheets/bootstrap/_grid.scss +84 -0
  48. data/generators/bootstrap3/public/stylesheets/bootstrap/_input-groups.scss +162 -0
  49. data/generators/bootstrap3/public/stylesheets/bootstrap/_jumbotron.scss +44 -0
  50. data/generators/bootstrap3/public/stylesheets/bootstrap/_labels.scss +64 -0
  51. data/generators/bootstrap3/public/stylesheets/bootstrap/_list-group.scss +110 -0
  52. data/generators/bootstrap3/public/stylesheets/bootstrap/_media.scss +56 -0
  53. data/generators/bootstrap3/public/stylesheets/bootstrap/_mixins.scss +947 -0
  54. data/generators/bootstrap3/public/stylesheets/bootstrap/_modals.scss +139 -0
  55. data/generators/bootstrap3/public/stylesheets/bootstrap/_navbar.scss +620 -0
  56. data/generators/bootstrap3/public/stylesheets/bootstrap/_navs.scss +242 -0
  57. data/generators/bootstrap3/public/stylesheets/bootstrap/_normalize.scss +423 -0
  58. data/generators/bootstrap3/public/stylesheets/bootstrap/_pager.scss +55 -0
  59. data/generators/bootstrap3/public/stylesheets/bootstrap/_pagination.scss +88 -0
  60. data/generators/bootstrap3/public/stylesheets/bootstrap/_panels.scss +241 -0
  61. data/generators/bootstrap3/public/stylesheets/bootstrap/_popovers.scss +133 -0
  62. data/generators/bootstrap3/public/stylesheets/bootstrap/_print.scss +101 -0
  63. data/generators/bootstrap3/public/stylesheets/bootstrap/_progress-bars.scss +80 -0
  64. data/generators/bootstrap3/public/stylesheets/bootstrap/_responsive-utilities.scss +74 -0
  65. data/generators/bootstrap3/public/stylesheets/bootstrap/_scaffolding.scss +134 -0
  66. data/generators/bootstrap3/public/stylesheets/bootstrap/_tables.scss +233 -0
  67. data/generators/bootstrap3/public/stylesheets/bootstrap/_theme.scss +247 -0
  68. data/generators/bootstrap3/public/stylesheets/bootstrap/_thumbnails.scss +38 -0
  69. data/generators/bootstrap3/public/stylesheets/bootstrap/_tooltip.scss +95 -0
  70. data/generators/bootstrap3/public/stylesheets/bootstrap/_type.scss +284 -0
  71. data/generators/bootstrap3/public/stylesheets/bootstrap/_utilities.scss +56 -0
  72. data/generators/bootstrap3/public/stylesheets/bootstrap/_variables.scss +833 -0
  73. data/generators/bootstrap3/public/stylesheets/bootstrap/_wells.scss +29 -0
  74. data/generators/bootstrap3/public/stylesheets/bootstrap/bootstrap.css.scss +49 -0
  75. data/generators/bootstrap3/public/stylesheets/bootstrap.css +2035 -3056
  76. data/generators/bootstrap3/public/stylesheets/bootstrap.css.scss +49 -0
  77. data/generators/cloned/Gemfile.tt +1 -3
  78. data/generators/content_type/app/content_types/%slug%.yml.tt +57 -0
  79. data/generators/content_type/data/{%name%.yml.tt → %slug%.yml.tt} +2 -2
  80. data/generators/{bootstrap2 → foundation5}/Gemfile.tt +1 -3
  81. data/generators/{bootstrap2/data → foundation5/app/content_types}/.empty_directory +0 -0
  82. data/generators/{foundation → foundation5}/app/views/pages/404.liquid +1 -4
  83. data/generators/{foundation → foundation5}/app/views/pages/404.liquid.haml +1 -1
  84. data/generators/foundation5/app/views/pages/index.liquid +196 -0
  85. data/generators/foundation5/app/views/pages/index.liquid.haml +157 -0
  86. data/generators/foundation5/config/deploy.yml +15 -0
  87. data/generators/{bootstrap2 → foundation5}/config/site.yml.tt +3 -4
  88. data/generators/{bootstrap2 → foundation5}/config/translations.yml +0 -0
  89. data/generators/{bootstrap2 → foundation5}/config.ru +0 -0
  90. data/generators/{bootstrap2/public/samples → foundation5/data}/.empty_directory +0 -0
  91. data/generators/foundation5/favicon.ico +0 -0
  92. data/generators/foundation5/icon.png +0 -0
  93. data/generators/{foundation/app/content_types → foundation5/public/fonts}/.empty_directory +0 -0
  94. data/generators/{foundation/data → foundation5/public/images}/.empty_directory +0 -0
  95. data/generators/foundation5/public/javascripts/foundation/foundation.abide.js +299 -0
  96. data/generators/foundation5/public/javascripts/foundation/foundation.accordion.js +59 -0
  97. data/generators/foundation5/public/javascripts/foundation/foundation.alert.js +43 -0
  98. data/generators/foundation5/public/javascripts/foundation/foundation.clearing.js +534 -0
  99. data/generators/foundation5/public/javascripts/foundation/foundation.dropdown.js +311 -0
  100. data/generators/foundation5/public/javascripts/foundation/foundation.equalizer.js +74 -0
  101. data/generators/foundation5/public/javascripts/foundation/foundation.interchange.js +331 -0
  102. data/generators/foundation5/public/javascripts/foundation/foundation.joyride.js +843 -0
  103. data/generators/foundation5/public/javascripts/foundation/foundation.js +611 -0
  104. data/generators/foundation5/public/javascripts/foundation/foundation.magellan.js +178 -0
  105. data/generators/foundation5/public/javascripts/foundation/foundation.offcanvas.js +108 -0
  106. data/generators/foundation5/public/javascripts/foundation/foundation.orbit.js +610 -0
  107. data/generators/foundation5/public/javascripts/foundation/foundation.reveal.js +437 -0
  108. data/generators/foundation5/public/javascripts/foundation/foundation.slider.js +199 -0
  109. data/generators/foundation5/public/javascripts/foundation/foundation.tab.js +167 -0
  110. data/generators/foundation5/public/javascripts/foundation/foundation.tooltip.js +298 -0
  111. data/generators/foundation5/public/javascripts/foundation/foundation.topbar.js +425 -0
  112. data/generators/foundation5/public/javascripts/foundation.js +4161 -0
  113. data/generators/foundation5/public/javascripts/foundation.min.js +10 -0
  114. data/generators/{foundation → foundation5}/public/javascripts/vendor/custom.modernizr.js +0 -0
  115. data/generators/foundation5/public/javascripts/vendor/custom.modernizr.min.js +1 -0
  116. data/generators/foundation5/public/javascripts/vendor/fastclick.js +9 -0
  117. data/generators/foundation5/public/javascripts/vendor/fastclick.min.js +11 -0
  118. data/generators/foundation5/public/javascripts/vendor/jquery.autocomplete.js +645 -0
  119. data/generators/foundation5/public/javascripts/vendor/jquery.autocomplete.min.js +1 -0
  120. data/generators/foundation5/public/javascripts/vendor/jquery.cookie.js +8 -0
  121. data/generators/foundation5/public/javascripts/vendor/jquery.cookie.min.js +8 -0
  122. data/generators/foundation5/public/javascripts/vendor/jquery.js +26 -0
  123. data/generators/foundation5/public/javascripts/vendor/jquery.min.js +27 -0
  124. data/generators/foundation5/public/javascripts/vendor/modernizr.js +8 -0
  125. data/generators/foundation5/public/javascripts/vendor/modernizr.min.js +1 -0
  126. data/generators/foundation5/public/javascripts/vendor/placeholder.js +2 -0
  127. data/generators/foundation5/public/javascripts/vendor/placeholder.min.js +1 -0
  128. data/generators/{foundation/public/fonts → foundation5/public/samples}/.empty_directory +0 -0
  129. data/generators/foundation5/public/stylesheets/application.css +2 -0
  130. data/generators/foundation5/public/stylesheets/application.css.scss +3 -0
  131. data/generators/foundation5/public/stylesheets/foundation/_functions.scss +101 -0
  132. data/generators/foundation5/public/stylesheets/foundation/_settings.scss +1296 -0
  133. data/generators/foundation5/public/stylesheets/foundation/components/_accordion.scss +53 -0
  134. data/generators/foundation5/public/stylesheets/foundation/components/_alert-boxes.scss +126 -0
  135. data/generators/foundation5/public/stylesheets/foundation/components/_block-grid.scss +132 -0
  136. data/generators/foundation5/public/stylesheets/foundation/components/_breadcrumbs.scss +127 -0
  137. data/generators/foundation5/public/stylesheets/foundation/components/_button-groups.scss +108 -0
  138. data/generators/foundation5/public/stylesheets/foundation/components/_buttons.scss +222 -0
  139. data/generators/foundation5/public/stylesheets/foundation/components/_clearing.scss +247 -0
  140. data/generators/foundation5/public/stylesheets/foundation/components/_dropdown-buttons.scss +129 -0
  141. data/generators/foundation5/public/stylesheets/foundation/components/_dropdown.scss +248 -0
  142. data/generators/foundation5/public/stylesheets/foundation/components/_flex-video.scss +51 -0
  143. data/generators/foundation5/public/stylesheets/foundation/components/_forms.scss +498 -0
  144. data/generators/foundation5/public/stylesheets/foundation/components/_global.scss +434 -0
  145. data/generators/foundation5/public/stylesheets/foundation/components/_grid.scss +260 -0
  146. data/generators/foundation5/public/stylesheets/foundation/components/_inline-lists.scss +57 -0
  147. data/generators/foundation5/public/stylesheets/foundation/components/_joyride.scss +220 -0
  148. data/generators/foundation5/public/stylesheets/foundation/components/_keystrokes.scss +61 -0
  149. data/generators/foundation5/public/stylesheets/foundation/components/_labels.scss +104 -0
  150. data/generators/foundation5/public/stylesheets/foundation/components/_magellan.scss +34 -0
  151. data/generators/foundation5/public/stylesheets/foundation/components/_offcanvas.scss +356 -0
  152. data/generators/foundation5/public/stylesheets/foundation/components/_orbit.scss +423 -0
  153. data/generators/foundation5/public/stylesheets/foundation/components/_pagination.scss +150 -0
  154. data/generators/foundation5/public/stylesheets/foundation/components/_panels.scss +90 -0
  155. data/generators/foundation5/public/stylesheets/foundation/components/_pricing-tables.scss +150 -0
  156. data/generators/foundation5/public/stylesheets/foundation/components/_progress-bars.scss +79 -0
  157. data/generators/foundation5/public/stylesheets/foundation/components/_range-slider.scss +148 -0
  158. data/generators/foundation5/public/stylesheets/foundation/components/_reveal-new.scss +0 -0
  159. data/generators/foundation5/public/stylesheets/foundation/components/_reveal.scss +216 -0
  160. data/generators/foundation5/public/stylesheets/foundation/components/_side-nav.scss +115 -0
  161. data/generators/foundation5/public/stylesheets/foundation/components/_split-buttons.scss +191 -0
  162. data/generators/foundation5/public/stylesheets/foundation/components/_sub-nav.scss +125 -0
  163. data/generators/foundation5/public/stylesheets/foundation/components/_switch.scss +294 -0
  164. data/generators/foundation5/public/stylesheets/foundation/components/_tables.scss +129 -0
  165. data/generators/foundation5/public/stylesheets/foundation/components/_tabs.scss +109 -0
  166. data/generators/foundation5/public/stylesheets/foundation/components/_thumbs.scss +68 -0
  167. data/generators/foundation5/public/stylesheets/foundation/components/_tooltips.scss +140 -0
  168. data/generators/foundation5/public/stylesheets/foundation/components/_top-bar.scss +659 -0
  169. data/generators/foundation5/public/stylesheets/foundation/components/_type.scss +513 -0
  170. data/generators/foundation5/public/stylesheets/foundation/components/_visibility.scss +408 -0
  171. data/generators/foundation5/public/stylesheets/foundation.css +5398 -0
  172. data/generators/foundation5/public/stylesheets/foundation.css.scss +45 -0
  173. data/generators/foundation5/public/stylesheets/normalize.css +425 -0
  174. data/generators/foundation5/public/stylesheets/normalize.css.scss +425 -0
  175. data/generators/{foundation → line_case}/Gemfile.tt +1 -3
  176. data/generators/line_case/app/content_types/categories.yml +56 -0
  177. data/generators/line_case/app/content_types/emails.yml +35 -0
  178. data/generators/line_case/app/content_types/projects.yml +58 -0
  179. data/generators/{bootstrap2 → line_case}/app/views/pages/404.liquid.haml +3 -2
  180. data/generators/line_case/app/views/pages/email-registered.liquid.haml +13 -0
  181. data/generators/line_case/app/views/pages/index.liquid.haml +110 -0
  182. data/generators/line_case/app/views/pages/projects/content_type_template.liquid.haml +32 -0
  183. data/generators/line_case/app/views/snippets/newsletter_form.liquid.haml +14 -0
  184. data/generators/line_case/app/views/snippets/projects.liquid.haml +17 -0
  185. data/generators/line_case/app/views/snippets/social_links.liquid.haml +19 -0
  186. data/generators/line_case/config/deploy.yml +15 -0
  187. data/generators/{foundation → line_case}/config/site.yml.tt +3 -3
  188. data/generators/{foundation → line_case}/config/translations.yml +0 -0
  189. data/generators/{foundation → line_case}/config.ru +0 -0
  190. data/generators/line_case/data/categories.yml +8 -0
  191. data/generators/line_case/data/emails.yml +2 -0
  192. data/generators/line_case/data/projects.yml +39 -0
  193. data/generators/line_case/icon.png +0 -0
  194. data/generators/line_case/public/images/banner-header.png +0 -0
  195. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.abide.js +0 -0
  196. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.alerts.js +0 -0
  197. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.clearing.js +0 -0
  198. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.cookie.js +0 -0
  199. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.dropdown.js +0 -0
  200. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.forms.js +0 -0
  201. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.interchange.js +0 -0
  202. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.joyride.js +0 -0
  203. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.js +0 -0
  204. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.magellan.js +0 -0
  205. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.orbit.js +0 -0
  206. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.placeholder.js +0 -0
  207. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.reveal.js +0 -0
  208. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.section.js +0 -0
  209. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.tooltips.js +0 -0
  210. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.topbar.js +0 -0
  211. data/generators/{foundation → line_case}/public/javascripts/foundation.min.js +0 -0
  212. data/generators/line_case/public/javascripts/vendor/custom.modernizr.js +4 -0
  213. data/generators/{foundation → line_case}/public/javascripts/vendor/jquery.js +0 -0
  214. data/generators/{foundation → line_case}/public/javascripts/vendor/zepto.js +0 -0
  215. data/generators/line_case/public/samples/projects/sample.jpeg +0 -0
  216. data/generators/line_case/public/samples/projects/sample2.jpeg +0 -0
  217. data/generators/line_case/public/samples/projects/sample3.jpeg +0 -0
  218. data/generators/line_case/public/samples/projects/sample4.jpeg +0 -0
  219. data/generators/line_case/public/samples/projects/sample5.jpeg +0 -0
  220. data/generators/line_case/public/samples/projects/sample6.jpeg +0 -0
  221. data/generators/line_case/public/samples/projects/sample7.jpeg +0 -0
  222. data/generators/line_case/public/samples/projects/sample8.jpeg +0 -0
  223. data/generators/line_case/public/stylesheets/_variables.css.sass +20 -0
  224. data/generators/line_case/public/stylesheets/foundation/_variables.scss +1290 -0
  225. data/generators/line_case/public/stylesheets/foundation/components/_alert-boxes.scss +107 -0
  226. data/generators/line_case/public/stylesheets/foundation/components/_block-grid.scss +71 -0
  227. data/generators/line_case/public/stylesheets/foundation/components/_breadcrumbs.scss +124 -0
  228. data/generators/line_case/public/stylesheets/foundation/components/_button-groups.scss +89 -0
  229. data/generators/line_case/public/stylesheets/foundation/components/_buttons.scss +230 -0
  230. data/generators/line_case/public/stylesheets/foundation/components/_clearing.scss +227 -0
  231. data/generators/line_case/public/stylesheets/foundation/components/_custom-forms.scss +278 -0
  232. data/generators/line_case/public/stylesheets/foundation/components/_dropdown-buttons.scss +115 -0
  233. data/generators/line_case/public/stylesheets/foundation/components/_dropdown.scss +151 -0
  234. data/generators/line_case/public/stylesheets/foundation/components/_flex-video.scss +46 -0
  235. data/generators/line_case/public/stylesheets/foundation/components/_forms.scss +411 -0
  236. data/generators/line_case/public/stylesheets/foundation/components/_global.scss +366 -0
  237. data/generators/line_case/public/stylesheets/foundation/components/_grid-5.scss +214 -0
  238. data/generators/line_case/public/stylesheets/foundation/components/_grid.scss +188 -0
  239. data/generators/line_case/public/stylesheets/foundation/components/_inline-lists.scss +53 -0
  240. data/generators/line_case/public/stylesheets/foundation/components/_joyride.scss +217 -0
  241. data/generators/line_case/public/stylesheets/foundation/components/_keystrokes.scss +57 -0
  242. data/generators/line_case/public/stylesheets/foundation/components/_labels.scss +85 -0
  243. data/generators/line_case/public/stylesheets/foundation/components/_magellan.scss +23 -0
  244. data/generators/line_case/public/stylesheets/foundation/components/_orbit.scss +340 -0
  245. data/generators/line_case/public/stylesheets/foundation/components/_pagination.scss +140 -0
  246. data/generators/line_case/public/stylesheets/foundation/components/_panels.scss +83 -0
  247. data/generators/line_case/public/stylesheets/foundation/components/_pricing-tables.scss +131 -0
  248. data/generators/line_case/public/stylesheets/foundation/components/_progress-bars.scss +71 -0
  249. data/generators/line_case/public/stylesheets/foundation/components/_reveal.scss +136 -0
  250. data/generators/line_case/public/stylesheets/foundation/components/_section.scss +391 -0
  251. data/generators/line_case/public/stylesheets/foundation/components/_side-nav.scss +69 -0
  252. data/generators/line_case/public/stylesheets/foundation/components/_split-buttons.scss +167 -0
  253. data/generators/line_case/public/stylesheets/foundation/components/_sub-nav.scss +84 -0
  254. data/generators/line_case/public/stylesheets/foundation/components/_switch.scss +266 -0
  255. data/generators/line_case/public/stylesheets/foundation/components/_tables.scss +84 -0
  256. data/generators/line_case/public/stylesheets/foundation/components/_thumbs.scss +53 -0
  257. data/generators/line_case/public/stylesheets/foundation/components/_tooltips.scss +117 -0
  258. data/generators/line_case/public/stylesheets/foundation/components/_top-bar.scss +576 -0
  259. data/generators/line_case/public/stylesheets/foundation/components/_type.scss +435 -0
  260. data/generators/line_case/public/stylesheets/foundation/components/_visibility.scss +322 -0
  261. data/generators/line_case/public/stylesheets/foundation.css.scss +43 -0
  262. data/generators/{foundation → line_case}/public/stylesheets/foundation.min.css +0 -0
  263. data/generators/{foundation/public/stylesheets/normalize.css → line_case/public/stylesheets/normalize.css.scss} +5 -5
  264. data/generators/line_case/public/stylesheets/pages.css.sass +163 -0
  265. data/generators/page/template.liquid.haml.tt +8 -5
  266. data/generators/page/template.liquid.tt +6 -2
  267. data/lib/locomotive/wagon/cli.rb +139 -43
  268. data/lib/locomotive/wagon/generators/content_type.rb +26 -10
  269. data/lib/locomotive/wagon/generators/page.rb +41 -25
  270. data/lib/locomotive/wagon/generators/site/base.rb +53 -0
  271. data/lib/locomotive/wagon/generators/site/blank.rb +9 -2
  272. data/lib/locomotive/wagon/generators/site/bootstrap2.rb +8 -2
  273. data/lib/locomotive/wagon/generators/site/bootstrap3.rb +20 -2
  274. data/lib/locomotive/wagon/generators/site/cloned.rb +4 -0
  275. data/lib/locomotive/wagon/generators/site/{foundation.rb → foundation4.rb} +10 -4
  276. data/lib/locomotive/wagon/generators/site/foundation5.rb +48 -0
  277. data/lib/locomotive/wagon/generators/site/line_case.rb +20 -0
  278. data/lib/locomotive/wagon/generators/site/unzip.rb +10 -2
  279. data/lib/locomotive/wagon/generators/site.rb +48 -2
  280. data/lib/locomotive/wagon/generators/snippet.rb +2 -1
  281. data/lib/locomotive/wagon/liquid/drops/content_types.rb +9 -3
  282. data/lib/locomotive/wagon/liquid/drops/page.rb +9 -1
  283. data/lib/locomotive/wagon/liquid/scopeable.rb +1 -1
  284. data/lib/locomotive/wagon/liquid/tags/fetch_page.rb +41 -0
  285. data/lib/locomotive/wagon/liquid/tags/model_form.rb +67 -0
  286. data/lib/locomotive/wagon/liquid/tags/path_helper.rb +2 -2
  287. data/lib/locomotive/wagon/liquid/tags/with_scope.rb +1 -1
  288. data/lib/locomotive/wagon/listen.rb +18 -10
  289. data/lib/locomotive/wagon/logger.rb +4 -0
  290. data/lib/locomotive/wagon/misc/core_ext.rb +8 -0
  291. data/lib/locomotive/wagon/misc/deployment_connection.rb +120 -0
  292. data/lib/locomotive/wagon/misc/hosting_api.rb +115 -0
  293. data/lib/locomotive/wagon/misc/httparty.rb +2 -0
  294. data/lib/locomotive/wagon/misc/livereload.rb +43 -0
  295. data/lib/locomotive/wagon/misc/mounter.rb +1 -1
  296. data/lib/locomotive/wagon/misc/tcp_port.rb +42 -0
  297. data/lib/locomotive/wagon/misc/thor.rb +15 -0
  298. data/lib/locomotive/wagon/server/entry_submission.rb +69 -38
  299. data/lib/locomotive/wagon/server/middleware.rb +4 -2
  300. data/lib/locomotive/wagon/server/page.rb +2 -2
  301. data/lib/locomotive/wagon/server.rb +11 -7
  302. data/lib/locomotive/wagon/version.rb +1 -1
  303. data/lib/locomotive/wagon.rb +141 -30
  304. data/locomotivecms_wagon.gemspec +7 -6
  305. data/spec/fixtures/default/app/content_types/bands.yml +3 -1
  306. data/spec/fixtures/default/app/views/pages/all.liquid.haml +3 -0
  307. data/spec/fixtures/default/app/views/pages/events.liquid.haml +21 -0
  308. data/spec/fixtures/default/app/views/pages/filtered.liquid.haml +11 -1
  309. data/spec/fixtures/default/app/views/pages/index.liquid.haml +1 -1
  310. data/spec/fixtures/default/data/bands.yml +3 -0
  311. data/spec/integration/server/basic_spec.rb +1 -0
  312. data/spec/integration/server/contact_form_spec.rb +1 -1
  313. data/spec/integration/server/liquid_spec.rb +8 -1
  314. data/spec/integration/server/new_contact_form_spec.rb +67 -0
  315. data/spec/integration/server/with_scope_spec.rb +10 -0
  316. data/spec/spec_helper.rb +3 -0
  317. metadata +339 -144
  318. data/generators/bootstrap2/app/views/pages/404.liquid +0 -13
  319. data/generators/bootstrap2/app/views/pages/index.liquid +0 -98
  320. data/generators/bootstrap2/app/views/pages/index.liquid.haml +0 -80
  321. data/generators/bootstrap2/app/views/snippets/footer.liquid +0 -3
  322. data/generators/bootstrap2/app/views/snippets/footer.liquid.haml +0 -2
  323. data/generators/bootstrap2/config/deploy.yml +0 -15
  324. data/generators/bootstrap2/public/fonts/FontAwesome.otf +0 -0
  325. data/generators/bootstrap2/public/fonts/fontawesome-webfont.eot +0 -0
  326. data/generators/bootstrap2/public/fonts/fontawesome-webfont.svg +0 -399
  327. data/generators/bootstrap2/public/fonts/fontawesome-webfont.ttf +0 -0
  328. data/generators/bootstrap2/public/fonts/fontawesome-webfont.woff +0 -0
  329. data/generators/bootstrap2/public/javascripts/bootstrap.js +0 -2280
  330. data/generators/bootstrap2/public/javascripts/bootstrap.min.js +0 -6
  331. data/generators/bootstrap2/public/stylesheets/application.css.scss +0 -39
  332. data/generators/bootstrap2/public/stylesheets/bootstrap-responsive.css +0 -1109
  333. data/generators/bootstrap2/public/stylesheets/bootstrap-responsive.min.css +0 -9
  334. data/generators/bootstrap2/public/stylesheets/bootstrap.css +0 -5568
  335. data/generators/bootstrap2/public/stylesheets/bootstrap.min.css +0 -9
  336. data/generators/bootstrap2/public/stylesheets/fonts/awesome.css.scss +0 -3
  337. data/generators/bootstrap2/public/stylesheets/fonts/font-awesome-ie7.css +0 -1203
  338. data/generators/bootstrap2/public/stylesheets/fonts/font-awesome-ie7.min.css +0 -384
  339. data/generators/bootstrap2/public/stylesheets/fonts/font-awesome.css +0 -1470
  340. data/generators/bootstrap2/public/stylesheets/fonts/font-awesome.min.css +0 -403
  341. data/generators/bootstrap3/public/javascripts/bootstrap.js +0 -1999
  342. data/generators/bootstrap3/public/stylesheets/bootstrap-theme.css +0 -384
  343. data/generators/bootstrap3/public/stylesheets/bootstrap-theme.min.css +0 -1
  344. data/generators/bootstrap3/public/stylesheets/bootstrap.min.css +0 -9
  345. data/generators/content_type/app/content_types/%name%.yml.tt +0 -58
  346. data/generators/foundation/app/views/pages/index.liquid +0 -150
  347. data/generators/foundation/app/views/pages/index.liquid.haml +0 -125
  348. data/generators/foundation/app/views/snippets/footer.liquid +0 -16
  349. data/generators/foundation/app/views/snippets/footer.liquid.haml +0 -22
  350. data/generators/foundation/config/deploy.yml +0 -15
  351. data/generators/foundation/public/samples/.empty_directory +0 -1
  352. data/generators/foundation/public/stylesheets/foundation.css +0 -4727
@@ -1,1470 +0,0 @@
1
- /*!
2
- * Font Awesome 3.2.1
3
- * the iconic font designed for Bootstrap
4
- * ------------------------------------------------------------------------------
5
- * The full suite of pictographic icons, examples, and documentation can be
6
- * found at http://fontawesome.io. Stay up to date on Twitter at
7
- * http://twitter.com/fontawesome.
8
- *
9
- * License
10
- * ------------------------------------------------------------------------------
11
- * - The Font Awesome font is licensed under SIL OFL 1.1 -
12
- * http://scripts.sil.org/OFL
13
- * - Font Awesome CSS, LESS, and SASS files are licensed under MIT License -
14
- * http://opensource.org/licenses/mit-license.html
15
- * - Font Awesome documentation licensed under CC BY 3.0 -
16
- * http://creativecommons.org/licenses/by/3.0/
17
- * - Attribution is no longer required in Font Awesome 3.0, but much appreciated:
18
- * "Font Awesome by Dave Gandy - http://fontawesome.io"
19
- *
20
- * Author - Dave Gandy
21
- * ------------------------------------------------------------------------------
22
- * Email: dave@fontawesome.io
23
- * Twitter: http://twitter.com/davegandy
24
- * Work: Lead Product Designer @ Kyruus - http://kyruus.com
25
- */
26
- /* FONT AWESOME CORE
27
- * -------------------------- */
28
- [class^="icon-"],
29
- [class*=" icon-"] {
30
- font-family: FontAwesome;
31
- font-weight: normal;
32
- font-style: normal;
33
- text-decoration: inherit;
34
- -webkit-font-smoothing: antialiased;
35
- *margin-right: .3em;
36
- }
37
- [class^="icon-"]:before,
38
- [class*=" icon-"]:before {
39
- text-decoration: inherit;
40
- display: inline-block;
41
- speak: none;
42
- }
43
- /* makes the font 33% larger relative to the icon container */
44
- .icon-large:before {
45
- vertical-align: -10%;
46
- font-size: 1.3333333333333333em;
47
- }
48
- /* makes sure icons active on rollover in links */
49
- a [class^="icon-"],
50
- a [class*=" icon-"] {
51
- display: inline;
52
- }
53
- /* increased font size for icon-large */
54
- [class^="icon-"].icon-fixed-width,
55
- [class*=" icon-"].icon-fixed-width {
56
- display: inline-block;
57
- width: 1.1428571428571428em;
58
- text-align: right;
59
- padding-right: 0.2857142857142857em;
60
- }
61
- [class^="icon-"].icon-fixed-width.icon-large,
62
- [class*=" icon-"].icon-fixed-width.icon-large {
63
- width: 1.4285714285714286em;
64
- }
65
- .icons-ul {
66
- margin-left: 2.142857142857143em;
67
- list-style-type: none;
68
- }
69
- .icons-ul > li {
70
- position: relative;
71
- }
72
- .icons-ul .icon-li {
73
- position: absolute;
74
- left: -2.142857142857143em;
75
- width: 2.142857142857143em;
76
- text-align: center;
77
- line-height: inherit;
78
- }
79
- [class^="icon-"].hide,
80
- [class*=" icon-"].hide {
81
- display: none;
82
- }
83
- .icon-muted {
84
- color: #eeeeee;
85
- }
86
- .icon-light {
87
- color: #ffffff;
88
- }
89
- .icon-dark {
90
- color: #333333;
91
- }
92
- .icon-border {
93
- border: solid 1px #eeeeee;
94
- padding: .2em .25em .15em;
95
- -webkit-border-radius: 3px;
96
- -moz-border-radius: 3px;
97
- border-radius: 3px;
98
- }
99
- .icon-2x {
100
- font-size: 2em;
101
- }
102
- .icon-2x.icon-border {
103
- border-width: 2px;
104
- -webkit-border-radius: 4px;
105
- -moz-border-radius: 4px;
106
- border-radius: 4px;
107
- }
108
- .icon-3x {
109
- font-size: 3em;
110
- }
111
- .icon-3x.icon-border {
112
- border-width: 3px;
113
- -webkit-border-radius: 5px;
114
- -moz-border-radius: 5px;
115
- border-radius: 5px;
116
- }
117
- .icon-4x {
118
- font-size: 4em;
119
- }
120
- .icon-4x.icon-border {
121
- border-width: 4px;
122
- -webkit-border-radius: 6px;
123
- -moz-border-radius: 6px;
124
- border-radius: 6px;
125
- }
126
- .icon-5x {
127
- font-size: 5em;
128
- }
129
- .icon-5x.icon-border {
130
- border-width: 5px;
131
- -webkit-border-radius: 7px;
132
- -moz-border-radius: 7px;
133
- border-radius: 7px;
134
- }
135
- .pull-right {
136
- float: right;
137
- }
138
- .pull-left {
139
- float: left;
140
- }
141
- [class^="icon-"].pull-left,
142
- [class*=" icon-"].pull-left {
143
- margin-right: .3em;
144
- }
145
- [class^="icon-"].pull-right,
146
- [class*=" icon-"].pull-right {
147
- margin-left: .3em;
148
- }
149
- /* BOOTSTRAP SPECIFIC CLASSES
150
- * -------------------------- */
151
- /* Bootstrap 2.0 sprites.less reset */
152
- [class^="icon-"],
153
- [class*=" icon-"] {
154
- display: inline;
155
- width: auto;
156
- height: auto;
157
- line-height: normal;
158
- vertical-align: baseline;
159
- background-image: none;
160
- background-position: 0% 0%;
161
- background-repeat: repeat;
162
- margin-top: 0;
163
- }
164
- /* more sprites.less reset */
165
- .icon-white,
166
- .nav-pills > .active > a > [class^="icon-"],
167
- .nav-pills > .active > a > [class*=" icon-"],
168
- .nav-list > .active > a > [class^="icon-"],
169
- .nav-list > .active > a > [class*=" icon-"],
170
- .navbar-inverse .nav > .active > a > [class^="icon-"],
171
- .navbar-inverse .nav > .active > a > [class*=" icon-"],
172
- .dropdown-menu > li > a:hover > [class^="icon-"],
173
- .dropdown-menu > li > a:hover > [class*=" icon-"],
174
- .dropdown-menu > .active > a > [class^="icon-"],
175
- .dropdown-menu > .active > a > [class*=" icon-"],
176
- .dropdown-submenu:hover > a > [class^="icon-"],
177
- .dropdown-submenu:hover > a > [class*=" icon-"] {
178
- background-image: none;
179
- }
180
- /* keeps Bootstrap styles with and without icons the same */
181
- .btn [class^="icon-"].icon-large,
182
- .nav [class^="icon-"].icon-large,
183
- .btn [class*=" icon-"].icon-large,
184
- .nav [class*=" icon-"].icon-large {
185
- line-height: .9em;
186
- }
187
- .btn [class^="icon-"].icon-spin,
188
- .nav [class^="icon-"].icon-spin,
189
- .btn [class*=" icon-"].icon-spin,
190
- .nav [class*=" icon-"].icon-spin {
191
- display: inline-block;
192
- }
193
- .nav-tabs [class^="icon-"],
194
- .nav-pills [class^="icon-"],
195
- .nav-tabs [class*=" icon-"],
196
- .nav-pills [class*=" icon-"],
197
- .nav-tabs [class^="icon-"].icon-large,
198
- .nav-pills [class^="icon-"].icon-large,
199
- .nav-tabs [class*=" icon-"].icon-large,
200
- .nav-pills [class*=" icon-"].icon-large {
201
- line-height: .9em;
202
- }
203
- .btn [class^="icon-"].pull-left.icon-2x,
204
- .btn [class*=" icon-"].pull-left.icon-2x,
205
- .btn [class^="icon-"].pull-right.icon-2x,
206
- .btn [class*=" icon-"].pull-right.icon-2x {
207
- margin-top: .18em;
208
- }
209
- .btn [class^="icon-"].icon-spin.icon-large,
210
- .btn [class*=" icon-"].icon-spin.icon-large {
211
- line-height: .8em;
212
- }
213
- .btn.btn-small [class^="icon-"].pull-left.icon-2x,
214
- .btn.btn-small [class*=" icon-"].pull-left.icon-2x,
215
- .btn.btn-small [class^="icon-"].pull-right.icon-2x,
216
- .btn.btn-small [class*=" icon-"].pull-right.icon-2x {
217
- margin-top: .25em;
218
- }
219
- .btn.btn-large [class^="icon-"],
220
- .btn.btn-large [class*=" icon-"] {
221
- margin-top: 0;
222
- }
223
- .btn.btn-large [class^="icon-"].pull-left.icon-2x,
224
- .btn.btn-large [class*=" icon-"].pull-left.icon-2x,
225
- .btn.btn-large [class^="icon-"].pull-right.icon-2x,
226
- .btn.btn-large [class*=" icon-"].pull-right.icon-2x {
227
- margin-top: .05em;
228
- }
229
- .btn.btn-large [class^="icon-"].pull-left.icon-2x,
230
- .btn.btn-large [class*=" icon-"].pull-left.icon-2x {
231
- margin-right: .2em;
232
- }
233
- .btn.btn-large [class^="icon-"].pull-right.icon-2x,
234
- .btn.btn-large [class*=" icon-"].pull-right.icon-2x {
235
- margin-left: .2em;
236
- }
237
- /* Fixes alignment in nav lists */
238
- .nav-list [class^="icon-"],
239
- .nav-list [class*=" icon-"] {
240
- line-height: inherit;
241
- }
242
- /* EXTRAS
243
- * -------------------------- */
244
- /* Stacked and layered icon */
245
- .icon-stack {
246
- position: relative;
247
- display: inline-block;
248
- width: 2em;
249
- height: 2em;
250
- line-height: 2em;
251
- vertical-align: -35%;
252
- }
253
- .icon-stack [class^="icon-"],
254
- .icon-stack [class*=" icon-"] {
255
- display: block;
256
- text-align: center;
257
- position: absolute;
258
- width: 100%;
259
- height: 100%;
260
- font-size: 1em;
261
- line-height: inherit;
262
- *line-height: 2em;
263
- }
264
- .icon-stack .icon-stack-base {
265
- font-size: 2em;
266
- *line-height: 1em;
267
- }
268
- /* Animated rotating icon */
269
- .icon-spin {
270
- display: inline-block;
271
- -moz-animation: spin 2s infinite linear;
272
- -o-animation: spin 2s infinite linear;
273
- -webkit-animation: spin 2s infinite linear;
274
- animation: spin 2s infinite linear;
275
- }
276
- /* Prevent stack and spinners from being taken inline when inside a link */
277
- a .icon-stack,
278
- a .icon-spin {
279
- display: inline-block;
280
- text-decoration: none;
281
- }
282
- @-moz-keyframes spin {
283
- 0% {
284
- -moz-transform: rotate(0deg);
285
- }
286
- 100% {
287
- -moz-transform: rotate(359deg);
288
- }
289
- }
290
- @-webkit-keyframes spin {
291
- 0% {
292
- -webkit-transform: rotate(0deg);
293
- }
294
- 100% {
295
- -webkit-transform: rotate(359deg);
296
- }
297
- }
298
- @-o-keyframes spin {
299
- 0% {
300
- -o-transform: rotate(0deg);
301
- }
302
- 100% {
303
- -o-transform: rotate(359deg);
304
- }
305
- }
306
- @-ms-keyframes spin {
307
- 0% {
308
- -ms-transform: rotate(0deg);
309
- }
310
- 100% {
311
- -ms-transform: rotate(359deg);
312
- }
313
- }
314
- @keyframes spin {
315
- 0% {
316
- transform: rotate(0deg);
317
- }
318
- 100% {
319
- transform: rotate(359deg);
320
- }
321
- }
322
- /* Icon rotations and mirroring */
323
- .icon-rotate-90:before {
324
- -webkit-transform: rotate(90deg);
325
- -moz-transform: rotate(90deg);
326
- -ms-transform: rotate(90deg);
327
- -o-transform: rotate(90deg);
328
- transform: rotate(90deg);
329
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
330
- }
331
- .icon-rotate-180:before {
332
- -webkit-transform: rotate(180deg);
333
- -moz-transform: rotate(180deg);
334
- -ms-transform: rotate(180deg);
335
- -o-transform: rotate(180deg);
336
- transform: rotate(180deg);
337
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
338
- }
339
- .icon-rotate-270:before {
340
- -webkit-transform: rotate(270deg);
341
- -moz-transform: rotate(270deg);
342
- -ms-transform: rotate(270deg);
343
- -o-transform: rotate(270deg);
344
- transform: rotate(270deg);
345
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
346
- }
347
- .icon-flip-horizontal:before {
348
- -webkit-transform: scale(-1, 1);
349
- -moz-transform: scale(-1, 1);
350
- -ms-transform: scale(-1, 1);
351
- -o-transform: scale(-1, 1);
352
- transform: scale(-1, 1);
353
- }
354
- .icon-flip-vertical:before {
355
- -webkit-transform: scale(1, -1);
356
- -moz-transform: scale(1, -1);
357
- -ms-transform: scale(1, -1);
358
- -o-transform: scale(1, -1);
359
- transform: scale(1, -1);
360
- }
361
- /* ensure rotation occurs inside anchor tags */
362
- a .icon-rotate-90:before,
363
- a .icon-rotate-180:before,
364
- a .icon-rotate-270:before,
365
- a .icon-flip-horizontal:before,
366
- a .icon-flip-vertical:before {
367
- display: inline-block;
368
- }
369
- /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
370
- readers do not read off random characters that represent icons */
371
- .icon-glass:before {
372
- content: "\f000";
373
- }
374
- .icon-music:before {
375
- content: "\f001";
376
- }
377
- .icon-search:before {
378
- content: "\f002";
379
- }
380
- .icon-envelope-alt:before {
381
- content: "\f003";
382
- }
383
- .icon-heart:before {
384
- content: "\f004";
385
- }
386
- .icon-star:before {
387
- content: "\f005";
388
- }
389
- .icon-star-empty:before {
390
- content: "\f006";
391
- }
392
- .icon-user:before {
393
- content: "\f007";
394
- }
395
- .icon-film:before {
396
- content: "\f008";
397
- }
398
- .icon-th-large:before {
399
- content: "\f009";
400
- }
401
- .icon-th:before {
402
- content: "\f00a";
403
- }
404
- .icon-th-list:before {
405
- content: "\f00b";
406
- }
407
- .icon-ok:before {
408
- content: "\f00c";
409
- }
410
- .icon-remove:before {
411
- content: "\f00d";
412
- }
413
- .icon-zoom-in:before {
414
- content: "\f00e";
415
- }
416
- .icon-zoom-out:before {
417
- content: "\f010";
418
- }
419
- .icon-power-off:before,
420
- .icon-off:before {
421
- content: "\f011";
422
- }
423
- .icon-signal:before {
424
- content: "\f012";
425
- }
426
- .icon-gear:before,
427
- .icon-cog:before {
428
- content: "\f013";
429
- }
430
- .icon-trash:before {
431
- content: "\f014";
432
- }
433
- .icon-home:before {
434
- content: "\f015";
435
- }
436
- .icon-file-alt:before {
437
- content: "\f016";
438
- }
439
- .icon-time:before {
440
- content: "\f017";
441
- }
442
- .icon-road:before {
443
- content: "\f018";
444
- }
445
- .icon-download-alt:before {
446
- content: "\f019";
447
- }
448
- .icon-download:before {
449
- content: "\f01a";
450
- }
451
- .icon-upload:before {
452
- content: "\f01b";
453
- }
454
- .icon-inbox:before {
455
- content: "\f01c";
456
- }
457
- .icon-play-circle:before {
458
- content: "\f01d";
459
- }
460
- .icon-rotate-right:before,
461
- .icon-repeat:before {
462
- content: "\f01e";
463
- }
464
- .icon-refresh:before {
465
- content: "\f021";
466
- }
467
- .icon-list-alt:before {
468
- content: "\f022";
469
- }
470
- .icon-lock:before {
471
- content: "\f023";
472
- }
473
- .icon-flag:before {
474
- content: "\f024";
475
- }
476
- .icon-headphones:before {
477
- content: "\f025";
478
- }
479
- .icon-volume-off:before {
480
- content: "\f026";
481
- }
482
- .icon-volume-down:before {
483
- content: "\f027";
484
- }
485
- .icon-volume-up:before {
486
- content: "\f028";
487
- }
488
- .icon-qrcode:before {
489
- content: "\f029";
490
- }
491
- .icon-barcode:before {
492
- content: "\f02a";
493
- }
494
- .icon-tag:before {
495
- content: "\f02b";
496
- }
497
- .icon-tags:before {
498
- content: "\f02c";
499
- }
500
- .icon-book:before {
501
- content: "\f02d";
502
- }
503
- .icon-bookmark:before {
504
- content: "\f02e";
505
- }
506
- .icon-print:before {
507
- content: "\f02f";
508
- }
509
- .icon-camera:before {
510
- content: "\f030";
511
- }
512
- .icon-font:before {
513
- content: "\f031";
514
- }
515
- .icon-bold:before {
516
- content: "\f032";
517
- }
518
- .icon-italic:before {
519
- content: "\f033";
520
- }
521
- .icon-text-height:before {
522
- content: "\f034";
523
- }
524
- .icon-text-width:before {
525
- content: "\f035";
526
- }
527
- .icon-align-left:before {
528
- content: "\f036";
529
- }
530
- .icon-align-center:before {
531
- content: "\f037";
532
- }
533
- .icon-align-right:before {
534
- content: "\f038";
535
- }
536
- .icon-align-justify:before {
537
- content: "\f039";
538
- }
539
- .icon-list:before {
540
- content: "\f03a";
541
- }
542
- .icon-indent-left:before {
543
- content: "\f03b";
544
- }
545
- .icon-indent-right:before {
546
- content: "\f03c";
547
- }
548
- .icon-facetime-video:before {
549
- content: "\f03d";
550
- }
551
- .icon-picture:before {
552
- content: "\f03e";
553
- }
554
- .icon-pencil:before {
555
- content: "\f040";
556
- }
557
- .icon-map-marker:before {
558
- content: "\f041";
559
- }
560
- .icon-adjust:before {
561
- content: "\f042";
562
- }
563
- .icon-tint:before {
564
- content: "\f043";
565
- }
566
- .icon-edit:before {
567
- content: "\f044";
568
- }
569
- .icon-share:before {
570
- content: "\f045";
571
- }
572
- .icon-check:before {
573
- content: "\f046";
574
- }
575
- .icon-move:before {
576
- content: "\f047";
577
- }
578
- .icon-step-backward:before {
579
- content: "\f048";
580
- }
581
- .icon-fast-backward:before {
582
- content: "\f049";
583
- }
584
- .icon-backward:before {
585
- content: "\f04a";
586
- }
587
- .icon-play:before {
588
- content: "\f04b";
589
- }
590
- .icon-pause:before {
591
- content: "\f04c";
592
- }
593
- .icon-stop:before {
594
- content: "\f04d";
595
- }
596
- .icon-forward:before {
597
- content: "\f04e";
598
- }
599
- .icon-fast-forward:before {
600
- content: "\f050";
601
- }
602
- .icon-step-forward:before {
603
- content: "\f051";
604
- }
605
- .icon-eject:before {
606
- content: "\f052";
607
- }
608
- .icon-chevron-left:before {
609
- content: "\f053";
610
- }
611
- .icon-chevron-right:before {
612
- content: "\f054";
613
- }
614
- .icon-plus-sign:before {
615
- content: "\f055";
616
- }
617
- .icon-minus-sign:before {
618
- content: "\f056";
619
- }
620
- .icon-remove-sign:before {
621
- content: "\f057";
622
- }
623
- .icon-ok-sign:before {
624
- content: "\f058";
625
- }
626
- .icon-question-sign:before {
627
- content: "\f059";
628
- }
629
- .icon-info-sign:before {
630
- content: "\f05a";
631
- }
632
- .icon-screenshot:before {
633
- content: "\f05b";
634
- }
635
- .icon-remove-circle:before {
636
- content: "\f05c";
637
- }
638
- .icon-ok-circle:before {
639
- content: "\f05d";
640
- }
641
- .icon-ban-circle:before {
642
- content: "\f05e";
643
- }
644
- .icon-arrow-left:before {
645
- content: "\f060";
646
- }
647
- .icon-arrow-right:before {
648
- content: "\f061";
649
- }
650
- .icon-arrow-up:before {
651
- content: "\f062";
652
- }
653
- .icon-arrow-down:before {
654
- content: "\f063";
655
- }
656
- .icon-mail-forward:before,
657
- .icon-share-alt:before {
658
- content: "\f064";
659
- }
660
- .icon-resize-full:before {
661
- content: "\f065";
662
- }
663
- .icon-resize-small:before {
664
- content: "\f066";
665
- }
666
- .icon-plus:before {
667
- content: "\f067";
668
- }
669
- .icon-minus:before {
670
- content: "\f068";
671
- }
672
- .icon-asterisk:before {
673
- content: "\f069";
674
- }
675
- .icon-exclamation-sign:before {
676
- content: "\f06a";
677
- }
678
- .icon-gift:before {
679
- content: "\f06b";
680
- }
681
- .icon-leaf:before {
682
- content: "\f06c";
683
- }
684
- .icon-fire:before {
685
- content: "\f06d";
686
- }
687
- .icon-eye-open:before {
688
- content: "\f06e";
689
- }
690
- .icon-eye-close:before {
691
- content: "\f070";
692
- }
693
- .icon-warning-sign:before {
694
- content: "\f071";
695
- }
696
- .icon-plane:before {
697
- content: "\f072";
698
- }
699
- .icon-calendar:before {
700
- content: "\f073";
701
- }
702
- .icon-random:before {
703
- content: "\f074";
704
- }
705
- .icon-comment:before {
706
- content: "\f075";
707
- }
708
- .icon-magnet:before {
709
- content: "\f076";
710
- }
711
- .icon-chevron-up:before {
712
- content: "\f077";
713
- }
714
- .icon-chevron-down:before {
715
- content: "\f078";
716
- }
717
- .icon-retweet:before {
718
- content: "\f079";
719
- }
720
- .icon-shopping-cart:before {
721
- content: "\f07a";
722
- }
723
- .icon-folder-close:before {
724
- content: "\f07b";
725
- }
726
- .icon-folder-open:before {
727
- content: "\f07c";
728
- }
729
- .icon-resize-vertical:before {
730
- content: "\f07d";
731
- }
732
- .icon-resize-horizontal:before {
733
- content: "\f07e";
734
- }
735
- .icon-bar-chart:before {
736
- content: "\f080";
737
- }
738
- .icon-twitter-sign:before {
739
- content: "\f081";
740
- }
741
- .icon-facebook-sign:before {
742
- content: "\f082";
743
- }
744
- .icon-camera-retro:before {
745
- content: "\f083";
746
- }
747
- .icon-key:before {
748
- content: "\f084";
749
- }
750
- .icon-gears:before,
751
- .icon-cogs:before {
752
- content: "\f085";
753
- }
754
- .icon-comments:before {
755
- content: "\f086";
756
- }
757
- .icon-thumbs-up-alt:before {
758
- content: "\f087";
759
- }
760
- .icon-thumbs-down-alt:before {
761
- content: "\f088";
762
- }
763
- .icon-star-half:before {
764
- content: "\f089";
765
- }
766
- .icon-heart-empty:before {
767
- content: "\f08a";
768
- }
769
- .icon-signout:before {
770
- content: "\f08b";
771
- }
772
- .icon-linkedin-sign:before {
773
- content: "\f08c";
774
- }
775
- .icon-pushpin:before {
776
- content: "\f08d";
777
- }
778
- .icon-external-link:before {
779
- content: "\f08e";
780
- }
781
- .icon-signin:before {
782
- content: "\f090";
783
- }
784
- .icon-trophy:before {
785
- content: "\f091";
786
- }
787
- .icon-github-sign:before {
788
- content: "\f092";
789
- }
790
- .icon-upload-alt:before {
791
- content: "\f093";
792
- }
793
- .icon-lemon:before {
794
- content: "\f094";
795
- }
796
- .icon-phone:before {
797
- content: "\f095";
798
- }
799
- .icon-unchecked:before,
800
- .icon-check-empty:before {
801
- content: "\f096";
802
- }
803
- .icon-bookmark-empty:before {
804
- content: "\f097";
805
- }
806
- .icon-phone-sign:before {
807
- content: "\f098";
808
- }
809
- .icon-twitter:before {
810
- content: "\f099";
811
- }
812
- .icon-facebook:before {
813
- content: "\f09a";
814
- }
815
- .icon-github:before {
816
- content: "\f09b";
817
- }
818
- .icon-unlock:before {
819
- content: "\f09c";
820
- }
821
- .icon-credit-card:before {
822
- content: "\f09d";
823
- }
824
- .icon-rss:before {
825
- content: "\f09e";
826
- }
827
- .icon-hdd:before {
828
- content: "\f0a0";
829
- }
830
- .icon-bullhorn:before {
831
- content: "\f0a1";
832
- }
833
- .icon-bell:before {
834
- content: "\f0a2";
835
- }
836
- .icon-certificate:before {
837
- content: "\f0a3";
838
- }
839
- .icon-hand-right:before {
840
- content: "\f0a4";
841
- }
842
- .icon-hand-left:before {
843
- content: "\f0a5";
844
- }
845
- .icon-hand-up:before {
846
- content: "\f0a6";
847
- }
848
- .icon-hand-down:before {
849
- content: "\f0a7";
850
- }
851
- .icon-circle-arrow-left:before {
852
- content: "\f0a8";
853
- }
854
- .icon-circle-arrow-right:before {
855
- content: "\f0a9";
856
- }
857
- .icon-circle-arrow-up:before {
858
- content: "\f0aa";
859
- }
860
- .icon-circle-arrow-down:before {
861
- content: "\f0ab";
862
- }
863
- .icon-globe:before {
864
- content: "\f0ac";
865
- }
866
- .icon-wrench:before {
867
- content: "\f0ad";
868
- }
869
- .icon-tasks:before {
870
- content: "\f0ae";
871
- }
872
- .icon-filter:before {
873
- content: "\f0b0";
874
- }
875
- .icon-briefcase:before {
876
- content: "\f0b1";
877
- }
878
- .icon-fullscreen:before {
879
- content: "\f0b2";
880
- }
881
- .icon-group:before {
882
- content: "\f0c0";
883
- }
884
- .icon-link:before {
885
- content: "\f0c1";
886
- }
887
- .icon-cloud:before {
888
- content: "\f0c2";
889
- }
890
- .icon-beaker:before {
891
- content: "\f0c3";
892
- }
893
- .icon-cut:before {
894
- content: "\f0c4";
895
- }
896
- .icon-copy:before {
897
- content: "\f0c5";
898
- }
899
- .icon-paperclip:before,
900
- .icon-paper-clip:before {
901
- content: "\f0c6";
902
- }
903
- .icon-save:before {
904
- content: "\f0c7";
905
- }
906
- .icon-sign-blank:before {
907
- content: "\f0c8";
908
- }
909
- .icon-reorder:before {
910
- content: "\f0c9";
911
- }
912
- .icon-list-ul:before {
913
- content: "\f0ca";
914
- }
915
- .icon-list-ol:before {
916
- content: "\f0cb";
917
- }
918
- .icon-strikethrough:before {
919
- content: "\f0cc";
920
- }
921
- .icon-underline:before {
922
- content: "\f0cd";
923
- }
924
- .icon-table:before {
925
- content: "\f0ce";
926
- }
927
- .icon-magic:before {
928
- content: "\f0d0";
929
- }
930
- .icon-truck:before {
931
- content: "\f0d1";
932
- }
933
- .icon-pinterest:before {
934
- content: "\f0d2";
935
- }
936
- .icon-pinterest-sign:before {
937
- content: "\f0d3";
938
- }
939
- .icon-google-plus-sign:before {
940
- content: "\f0d4";
941
- }
942
- .icon-google-plus:before {
943
- content: "\f0d5";
944
- }
945
- .icon-money:before {
946
- content: "\f0d6";
947
- }
948
- .icon-caret-down:before {
949
- content: "\f0d7";
950
- }
951
- .icon-caret-up:before {
952
- content: "\f0d8";
953
- }
954
- .icon-caret-left:before {
955
- content: "\f0d9";
956
- }
957
- .icon-caret-right:before {
958
- content: "\f0da";
959
- }
960
- .icon-columns:before {
961
- content: "\f0db";
962
- }
963
- .icon-sort:before {
964
- content: "\f0dc";
965
- }
966
- .icon-sort-down:before {
967
- content: "\f0dd";
968
- }
969
- .icon-sort-up:before {
970
- content: "\f0de";
971
- }
972
- .icon-envelope:before {
973
- content: "\f0e0";
974
- }
975
- .icon-linkedin:before {
976
- content: "\f0e1";
977
- }
978
- .icon-rotate-left:before,
979
- .icon-undo:before {
980
- content: "\f0e2";
981
- }
982
- .icon-legal:before {
983
- content: "\f0e3";
984
- }
985
- .icon-dashboard:before {
986
- content: "\f0e4";
987
- }
988
- .icon-comment-alt:before {
989
- content: "\f0e5";
990
- }
991
- .icon-comments-alt:before {
992
- content: "\f0e6";
993
- }
994
- .icon-bolt:before {
995
- content: "\f0e7";
996
- }
997
- .icon-sitemap:before {
998
- content: "\f0e8";
999
- }
1000
- .icon-umbrella:before {
1001
- content: "\f0e9";
1002
- }
1003
- .icon-paste:before {
1004
- content: "\f0ea";
1005
- }
1006
- .icon-lightbulb:before {
1007
- content: "\f0eb";
1008
- }
1009
- .icon-exchange:before {
1010
- content: "\f0ec";
1011
- }
1012
- .icon-cloud-download:before {
1013
- content: "\f0ed";
1014
- }
1015
- .icon-cloud-upload:before {
1016
- content: "\f0ee";
1017
- }
1018
- .icon-user-md:before {
1019
- content: "\f0f0";
1020
- }
1021
- .icon-stethoscope:before {
1022
- content: "\f0f1";
1023
- }
1024
- .icon-suitcase:before {
1025
- content: "\f0f2";
1026
- }
1027
- .icon-bell-alt:before {
1028
- content: "\f0f3";
1029
- }
1030
- .icon-coffee:before {
1031
- content: "\f0f4";
1032
- }
1033
- .icon-food:before {
1034
- content: "\f0f5";
1035
- }
1036
- .icon-file-text-alt:before {
1037
- content: "\f0f6";
1038
- }
1039
- .icon-building:before {
1040
- content: "\f0f7";
1041
- }
1042
- .icon-hospital:before {
1043
- content: "\f0f8";
1044
- }
1045
- .icon-ambulance:before {
1046
- content: "\f0f9";
1047
- }
1048
- .icon-medkit:before {
1049
- content: "\f0fa";
1050
- }
1051
- .icon-fighter-jet:before {
1052
- content: "\f0fb";
1053
- }
1054
- .icon-beer:before {
1055
- content: "\f0fc";
1056
- }
1057
- .icon-h-sign:before {
1058
- content: "\f0fd";
1059
- }
1060
- .icon-plus-sign-alt:before {
1061
- content: "\f0fe";
1062
- }
1063
- .icon-double-angle-left:before {
1064
- content: "\f100";
1065
- }
1066
- .icon-double-angle-right:before {
1067
- content: "\f101";
1068
- }
1069
- .icon-double-angle-up:before {
1070
- content: "\f102";
1071
- }
1072
- .icon-double-angle-down:before {
1073
- content: "\f103";
1074
- }
1075
- .icon-angle-left:before {
1076
- content: "\f104";
1077
- }
1078
- .icon-angle-right:before {
1079
- content: "\f105";
1080
- }
1081
- .icon-angle-up:before {
1082
- content: "\f106";
1083
- }
1084
- .icon-angle-down:before {
1085
- content: "\f107";
1086
- }
1087
- .icon-desktop:before {
1088
- content: "\f108";
1089
- }
1090
- .icon-laptop:before {
1091
- content: "\f109";
1092
- }
1093
- .icon-tablet:before {
1094
- content: "\f10a";
1095
- }
1096
- .icon-mobile-phone:before {
1097
- content: "\f10b";
1098
- }
1099
- .icon-circle-blank:before {
1100
- content: "\f10c";
1101
- }
1102
- .icon-quote-left:before {
1103
- content: "\f10d";
1104
- }
1105
- .icon-quote-right:before {
1106
- content: "\f10e";
1107
- }
1108
- .icon-spinner:before {
1109
- content: "\f110";
1110
- }
1111
- .icon-circle:before {
1112
- content: "\f111";
1113
- }
1114
- .icon-mail-reply:before,
1115
- .icon-reply:before {
1116
- content: "\f112";
1117
- }
1118
- .icon-github-alt:before {
1119
- content: "\f113";
1120
- }
1121
- .icon-folder-close-alt:before {
1122
- content: "\f114";
1123
- }
1124
- .icon-folder-open-alt:before {
1125
- content: "\f115";
1126
- }
1127
- .icon-expand-alt:before {
1128
- content: "\f116";
1129
- }
1130
- .icon-collapse-alt:before {
1131
- content: "\f117";
1132
- }
1133
- .icon-smile:before {
1134
- content: "\f118";
1135
- }
1136
- .icon-frown:before {
1137
- content: "\f119";
1138
- }
1139
- .icon-meh:before {
1140
- content: "\f11a";
1141
- }
1142
- .icon-gamepad:before {
1143
- content: "\f11b";
1144
- }
1145
- .icon-keyboard:before {
1146
- content: "\f11c";
1147
- }
1148
- .icon-flag-alt:before {
1149
- content: "\f11d";
1150
- }
1151
- .icon-flag-checkered:before {
1152
- content: "\f11e";
1153
- }
1154
- .icon-terminal:before {
1155
- content: "\f120";
1156
- }
1157
- .icon-code:before {
1158
- content: "\f121";
1159
- }
1160
- .icon-reply-all:before {
1161
- content: "\f122";
1162
- }
1163
- .icon-mail-reply-all:before {
1164
- content: "\f122";
1165
- }
1166
- .icon-star-half-full:before,
1167
- .icon-star-half-empty:before {
1168
- content: "\f123";
1169
- }
1170
- .icon-location-arrow:before {
1171
- content: "\f124";
1172
- }
1173
- .icon-crop:before {
1174
- content: "\f125";
1175
- }
1176
- .icon-code-fork:before {
1177
- content: "\f126";
1178
- }
1179
- .icon-unlink:before {
1180
- content: "\f127";
1181
- }
1182
- .icon-question:before {
1183
- content: "\f128";
1184
- }
1185
- .icon-info:before {
1186
- content: "\f129";
1187
- }
1188
- .icon-exclamation:before {
1189
- content: "\f12a";
1190
- }
1191
- .icon-superscript:before {
1192
- content: "\f12b";
1193
- }
1194
- .icon-subscript:before {
1195
- content: "\f12c";
1196
- }
1197
- .icon-eraser:before {
1198
- content: "\f12d";
1199
- }
1200
- .icon-puzzle-piece:before {
1201
- content: "\f12e";
1202
- }
1203
- .icon-microphone:before {
1204
- content: "\f130";
1205
- }
1206
- .icon-microphone-off:before {
1207
- content: "\f131";
1208
- }
1209
- .icon-shield:before {
1210
- content: "\f132";
1211
- }
1212
- .icon-calendar-empty:before {
1213
- content: "\f133";
1214
- }
1215
- .icon-fire-extinguisher:before {
1216
- content: "\f134";
1217
- }
1218
- .icon-rocket:before {
1219
- content: "\f135";
1220
- }
1221
- .icon-maxcdn:before {
1222
- content: "\f136";
1223
- }
1224
- .icon-chevron-sign-left:before {
1225
- content: "\f137";
1226
- }
1227
- .icon-chevron-sign-right:before {
1228
- content: "\f138";
1229
- }
1230
- .icon-chevron-sign-up:before {
1231
- content: "\f139";
1232
- }
1233
- .icon-chevron-sign-down:before {
1234
- content: "\f13a";
1235
- }
1236
- .icon-html5:before {
1237
- content: "\f13b";
1238
- }
1239
- .icon-css3:before {
1240
- content: "\f13c";
1241
- }
1242
- .icon-anchor:before {
1243
- content: "\f13d";
1244
- }
1245
- .icon-unlock-alt:before {
1246
- content: "\f13e";
1247
- }
1248
- .icon-bullseye:before {
1249
- content: "\f140";
1250
- }
1251
- .icon-ellipsis-horizontal:before {
1252
- content: "\f141";
1253
- }
1254
- .icon-ellipsis-vertical:before {
1255
- content: "\f142";
1256
- }
1257
- .icon-rss-sign:before {
1258
- content: "\f143";
1259
- }
1260
- .icon-play-sign:before {
1261
- content: "\f144";
1262
- }
1263
- .icon-ticket:before {
1264
- content: "\f145";
1265
- }
1266
- .icon-minus-sign-alt:before {
1267
- content: "\f146";
1268
- }
1269
- .icon-check-minus:before {
1270
- content: "\f147";
1271
- }
1272
- .icon-level-up:before {
1273
- content: "\f148";
1274
- }
1275
- .icon-level-down:before {
1276
- content: "\f149";
1277
- }
1278
- .icon-check-sign:before {
1279
- content: "\f14a";
1280
- }
1281
- .icon-edit-sign:before {
1282
- content: "\f14b";
1283
- }
1284
- .icon-external-link-sign:before {
1285
- content: "\f14c";
1286
- }
1287
- .icon-share-sign:before {
1288
- content: "\f14d";
1289
- }
1290
- .icon-compass:before {
1291
- content: "\f14e";
1292
- }
1293
- .icon-collapse:before {
1294
- content: "\f150";
1295
- }
1296
- .icon-collapse-top:before {
1297
- content: "\f151";
1298
- }
1299
- .icon-expand:before {
1300
- content: "\f152";
1301
- }
1302
- .icon-euro:before,
1303
- .icon-eur:before {
1304
- content: "\f153";
1305
- }
1306
- .icon-gbp:before {
1307
- content: "\f154";
1308
- }
1309
- .icon-dollar:before,
1310
- .icon-usd:before {
1311
- content: "\f155";
1312
- }
1313
- .icon-rupee:before,
1314
- .icon-inr:before {
1315
- content: "\f156";
1316
- }
1317
- .icon-yen:before,
1318
- .icon-jpy:before {
1319
- content: "\f157";
1320
- }
1321
- .icon-renminbi:before,
1322
- .icon-cny:before {
1323
- content: "\f158";
1324
- }
1325
- .icon-won:before,
1326
- .icon-krw:before {
1327
- content: "\f159";
1328
- }
1329
- .icon-bitcoin:before,
1330
- .icon-btc:before {
1331
- content: "\f15a";
1332
- }
1333
- .icon-file:before {
1334
- content: "\f15b";
1335
- }
1336
- .icon-file-text:before {
1337
- content: "\f15c";
1338
- }
1339
- .icon-sort-by-alphabet:before {
1340
- content: "\f15d";
1341
- }
1342
- .icon-sort-by-alphabet-alt:before {
1343
- content: "\f15e";
1344
- }
1345
- .icon-sort-by-attributes:before {
1346
- content: "\f160";
1347
- }
1348
- .icon-sort-by-attributes-alt:before {
1349
- content: "\f161";
1350
- }
1351
- .icon-sort-by-order:before {
1352
- content: "\f162";
1353
- }
1354
- .icon-sort-by-order-alt:before {
1355
- content: "\f163";
1356
- }
1357
- .icon-thumbs-up:before {
1358
- content: "\f164";
1359
- }
1360
- .icon-thumbs-down:before {
1361
- content: "\f165";
1362
- }
1363
- .icon-youtube-sign:before {
1364
- content: "\f166";
1365
- }
1366
- .icon-youtube:before {
1367
- content: "\f167";
1368
- }
1369
- .icon-xing:before {
1370
- content: "\f168";
1371
- }
1372
- .icon-xing-sign:before {
1373
- content: "\f169";
1374
- }
1375
- .icon-youtube-play:before {
1376
- content: "\f16a";
1377
- }
1378
- .icon-dropbox:before {
1379
- content: "\f16b";
1380
- }
1381
- .icon-stackexchange:before {
1382
- content: "\f16c";
1383
- }
1384
- .icon-instagram:before {
1385
- content: "\f16d";
1386
- }
1387
- .icon-flickr:before {
1388
- content: "\f16e";
1389
- }
1390
- .icon-adn:before {
1391
- content: "\f170";
1392
- }
1393
- .icon-bitbucket:before {
1394
- content: "\f171";
1395
- }
1396
- .icon-bitbucket-sign:before {
1397
- content: "\f172";
1398
- }
1399
- .icon-tumblr:before {
1400
- content: "\f173";
1401
- }
1402
- .icon-tumblr-sign:before {
1403
- content: "\f174";
1404
- }
1405
- .icon-long-arrow-down:before {
1406
- content: "\f175";
1407
- }
1408
- .icon-long-arrow-up:before {
1409
- content: "\f176";
1410
- }
1411
- .icon-long-arrow-left:before {
1412
- content: "\f177";
1413
- }
1414
- .icon-long-arrow-right:before {
1415
- content: "\f178";
1416
- }
1417
- .icon-apple:before {
1418
- content: "\f179";
1419
- }
1420
- .icon-windows:before {
1421
- content: "\f17a";
1422
- }
1423
- .icon-android:before {
1424
- content: "\f17b";
1425
- }
1426
- .icon-linux:before {
1427
- content: "\f17c";
1428
- }
1429
- .icon-dribbble:before {
1430
- content: "\f17d";
1431
- }
1432
- .icon-skype:before {
1433
- content: "\f17e";
1434
- }
1435
- .icon-foursquare:before {
1436
- content: "\f180";
1437
- }
1438
- .icon-trello:before {
1439
- content: "\f181";
1440
- }
1441
- .icon-female:before {
1442
- content: "\f182";
1443
- }
1444
- .icon-male:before {
1445
- content: "\f183";
1446
- }
1447
- .icon-gittip:before {
1448
- content: "\f184";
1449
- }
1450
- .icon-sun:before {
1451
- content: "\f185";
1452
- }
1453
- .icon-moon:before {
1454
- content: "\f186";
1455
- }
1456
- .icon-archive:before {
1457
- content: "\f187";
1458
- }
1459
- .icon-bug:before {
1460
- content: "\f188";
1461
- }
1462
- .icon-vk:before {
1463
- content: "\f189";
1464
- }
1465
- .icon-weibo:before {
1466
- content: "\f18a";
1467
- }
1468
- .icon-renren:before {
1469
- content: "\f18b";
1470
- }