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,403 +0,0 @@
1
- [class^="icon-"],[class*=" icon-"]{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;*margin-right:.3em;}
2
- [class^="icon-"]:before,[class*=" icon-"]:before{text-decoration:inherit;display:inline-block;speak:none;}
3
- .icon-large:before{vertical-align:-10%;font-size:1.3333333333333333em;}
4
- a [class^="icon-"],a [class*=" icon-"]{display:inline;}
5
- [class^="icon-"].icon-fixed-width,[class*=" icon-"].icon-fixed-width{display:inline-block;width:1.1428571428571428em;text-align:right;padding-right:0.2857142857142857em;}[class^="icon-"].icon-fixed-width.icon-large,[class*=" icon-"].icon-fixed-width.icon-large{width:1.4285714285714286em;}
6
- .icons-ul{margin-left:2.142857142857143em;list-style-type:none;}.icons-ul>li{position:relative;}
7
- .icons-ul .icon-li{position:absolute;left:-2.142857142857143em;width:2.142857142857143em;text-align:center;line-height:inherit;}
8
- [class^="icon-"].hide,[class*=" icon-"].hide{display:none;}
9
- .icon-muted{color:#eeeeee;}
10
- .icon-light{color:#ffffff;}
11
- .icon-dark{color:#333333;}
12
- .icon-border{border:solid 1px #eeeeee;padding:.2em .25em .15em;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
13
- .icon-2x{font-size:2em;}.icon-2x.icon-border{border-width:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}
14
- .icon-3x{font-size:3em;}.icon-3x.icon-border{border-width:3px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;}
15
- .icon-4x{font-size:4em;}.icon-4x.icon-border{border-width:4px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}
16
- .icon-5x{font-size:5em;}.icon-5x.icon-border{border-width:5px;-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px;}
17
- .pull-right{float:right;}
18
- .pull-left{float:left;}
19
- [class^="icon-"].pull-left,[class*=" icon-"].pull-left{margin-right:.3em;}
20
- [class^="icon-"].pull-right,[class*=" icon-"].pull-right{margin-left:.3em;}
21
- [class^="icon-"],[class*=" icon-"]{display:inline;width:auto;height:auto;line-height:normal;vertical-align:baseline;background-image:none;background-position:0% 0%;background-repeat:repeat;margin-top:0;}
22
- .icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"]{background-image:none;}
23
- .btn [class^="icon-"].icon-large,.nav [class^="icon-"].icon-large,.btn [class*=" icon-"].icon-large,.nav [class*=" icon-"].icon-large{line-height:.9em;}
24
- .btn [class^="icon-"].icon-spin,.nav [class^="icon-"].icon-spin,.btn [class*=" icon-"].icon-spin,.nav [class*=" icon-"].icon-spin{display:inline-block;}
25
- .nav-tabs [class^="icon-"],.nav-pills [class^="icon-"],.nav-tabs [class*=" icon-"],.nav-pills [class*=" icon-"],.nav-tabs [class^="icon-"].icon-large,.nav-pills [class^="icon-"].icon-large,.nav-tabs [class*=" icon-"].icon-large,.nav-pills [class*=" icon-"].icon-large{line-height:.9em;}
26
- .btn [class^="icon-"].pull-left.icon-2x,.btn [class*=" icon-"].pull-left.icon-2x,.btn [class^="icon-"].pull-right.icon-2x,.btn [class*=" icon-"].pull-right.icon-2x{margin-top:.18em;}
27
- .btn [class^="icon-"].icon-spin.icon-large,.btn [class*=" icon-"].icon-spin.icon-large{line-height:.8em;}
28
- .btn.btn-small [class^="icon-"].pull-left.icon-2x,.btn.btn-small [class*=" icon-"].pull-left.icon-2x,.btn.btn-small [class^="icon-"].pull-right.icon-2x,.btn.btn-small [class*=" icon-"].pull-right.icon-2x{margin-top:.25em;}
29
- .btn.btn-large [class^="icon-"],.btn.btn-large [class*=" icon-"]{margin-top:0;}.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x,.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-top:.05em;}
30
- .btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x{margin-right:.2em;}
31
- .btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-left:.2em;}
32
- .nav-list [class^="icon-"],.nav-list [class*=" icon-"]{line-height:inherit;}
33
- .icon-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:-35%;}.icon-stack [class^="icon-"],.icon-stack [class*=" icon-"]{display:block;text-align:center;position:absolute;width:100%;height:100%;font-size:1em;line-height:inherit;*line-height:2em;}
34
- .icon-stack .icon-stack-base{font-size:2em;*line-height:1em;}
35
- .icon-spin{display:inline-block;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear;}
36
- a .icon-stack,a .icon-spin{display:inline-block;text-decoration:none;}
37
- @-moz-keyframes spin{0%{-moz-transform:rotate(0deg);} 100%{-moz-transform:rotate(359deg);}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);} 100%{-webkit-transform:rotate(359deg);}}@-o-keyframes spin{0%{-o-transform:rotate(0deg);} 100%{-o-transform:rotate(359deg);}}@-ms-keyframes spin{0%{-ms-transform:rotate(0deg);} 100%{-ms-transform:rotate(359deg);}}@keyframes spin{0%{transform:rotate(0deg);} 100%{transform:rotate(359deg);}}.icon-rotate-90:before{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);}
38
- .icon-rotate-180:before{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);}
39
- .icon-rotate-270:before{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);}
40
- .icon-flip-horizontal:before{-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-transform:scale(-1, 1);transform:scale(-1, 1);}
41
- .icon-flip-vertical:before{-webkit-transform:scale(1, -1);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1);}
42
- a .icon-rotate-90:before,a .icon-rotate-180:before,a .icon-rotate-270:before,a .icon-flip-horizontal:before,a .icon-flip-vertical:before{display:inline-block;}
43
- .icon-glass:before{content:"\f000";}
44
- .icon-music:before{content:"\f001";}
45
- .icon-search:before{content:"\f002";}
46
- .icon-envelope-alt:before{content:"\f003";}
47
- .icon-heart:before{content:"\f004";}
48
- .icon-star:before{content:"\f005";}
49
- .icon-star-empty:before{content:"\f006";}
50
- .icon-user:before{content:"\f007";}
51
- .icon-film:before{content:"\f008";}
52
- .icon-th-large:before{content:"\f009";}
53
- .icon-th:before{content:"\f00a";}
54
- .icon-th-list:before{content:"\f00b";}
55
- .icon-ok:before{content:"\f00c";}
56
- .icon-remove:before{content:"\f00d";}
57
- .icon-zoom-in:before{content:"\f00e";}
58
- .icon-zoom-out:before{content:"\f010";}
59
- .icon-power-off:before,.icon-off:before{content:"\f011";}
60
- .icon-signal:before{content:"\f012";}
61
- .icon-gear:before,.icon-cog:before{content:"\f013";}
62
- .icon-trash:before{content:"\f014";}
63
- .icon-home:before{content:"\f015";}
64
- .icon-file-alt:before{content:"\f016";}
65
- .icon-time:before{content:"\f017";}
66
- .icon-road:before{content:"\f018";}
67
- .icon-download-alt:before{content:"\f019";}
68
- .icon-download:before{content:"\f01a";}
69
- .icon-upload:before{content:"\f01b";}
70
- .icon-inbox:before{content:"\f01c";}
71
- .icon-play-circle:before{content:"\f01d";}
72
- .icon-rotate-right:before,.icon-repeat:before{content:"\f01e";}
73
- .icon-refresh:before{content:"\f021";}
74
- .icon-list-alt:before{content:"\f022";}
75
- .icon-lock:before{content:"\f023";}
76
- .icon-flag:before{content:"\f024";}
77
- .icon-headphones:before{content:"\f025";}
78
- .icon-volume-off:before{content:"\f026";}
79
- .icon-volume-down:before{content:"\f027";}
80
- .icon-volume-up:before{content:"\f028";}
81
- .icon-qrcode:before{content:"\f029";}
82
- .icon-barcode:before{content:"\f02a";}
83
- .icon-tag:before{content:"\f02b";}
84
- .icon-tags:before{content:"\f02c";}
85
- .icon-book:before{content:"\f02d";}
86
- .icon-bookmark:before{content:"\f02e";}
87
- .icon-print:before{content:"\f02f";}
88
- .icon-camera:before{content:"\f030";}
89
- .icon-font:before{content:"\f031";}
90
- .icon-bold:before{content:"\f032";}
91
- .icon-italic:before{content:"\f033";}
92
- .icon-text-height:before{content:"\f034";}
93
- .icon-text-width:before{content:"\f035";}
94
- .icon-align-left:before{content:"\f036";}
95
- .icon-align-center:before{content:"\f037";}
96
- .icon-align-right:before{content:"\f038";}
97
- .icon-align-justify:before{content:"\f039";}
98
- .icon-list:before{content:"\f03a";}
99
- .icon-indent-left:before{content:"\f03b";}
100
- .icon-indent-right:before{content:"\f03c";}
101
- .icon-facetime-video:before{content:"\f03d";}
102
- .icon-picture:before{content:"\f03e";}
103
- .icon-pencil:before{content:"\f040";}
104
- .icon-map-marker:before{content:"\f041";}
105
- .icon-adjust:before{content:"\f042";}
106
- .icon-tint:before{content:"\f043";}
107
- .icon-edit:before{content:"\f044";}
108
- .icon-share:before{content:"\f045";}
109
- .icon-check:before{content:"\f046";}
110
- .icon-move:before{content:"\f047";}
111
- .icon-step-backward:before{content:"\f048";}
112
- .icon-fast-backward:before{content:"\f049";}
113
- .icon-backward:before{content:"\f04a";}
114
- .icon-play:before{content:"\f04b";}
115
- .icon-pause:before{content:"\f04c";}
116
- .icon-stop:before{content:"\f04d";}
117
- .icon-forward:before{content:"\f04e";}
118
- .icon-fast-forward:before{content:"\f050";}
119
- .icon-step-forward:before{content:"\f051";}
120
- .icon-eject:before{content:"\f052";}
121
- .icon-chevron-left:before{content:"\f053";}
122
- .icon-chevron-right:before{content:"\f054";}
123
- .icon-plus-sign:before{content:"\f055";}
124
- .icon-minus-sign:before{content:"\f056";}
125
- .icon-remove-sign:before{content:"\f057";}
126
- .icon-ok-sign:before{content:"\f058";}
127
- .icon-question-sign:before{content:"\f059";}
128
- .icon-info-sign:before{content:"\f05a";}
129
- .icon-screenshot:before{content:"\f05b";}
130
- .icon-remove-circle:before{content:"\f05c";}
131
- .icon-ok-circle:before{content:"\f05d";}
132
- .icon-ban-circle:before{content:"\f05e";}
133
- .icon-arrow-left:before{content:"\f060";}
134
- .icon-arrow-right:before{content:"\f061";}
135
- .icon-arrow-up:before{content:"\f062";}
136
- .icon-arrow-down:before{content:"\f063";}
137
- .icon-mail-forward:before,.icon-share-alt:before{content:"\f064";}
138
- .icon-resize-full:before{content:"\f065";}
139
- .icon-resize-small:before{content:"\f066";}
140
- .icon-plus:before{content:"\f067";}
141
- .icon-minus:before{content:"\f068";}
142
- .icon-asterisk:before{content:"\f069";}
143
- .icon-exclamation-sign:before{content:"\f06a";}
144
- .icon-gift:before{content:"\f06b";}
145
- .icon-leaf:before{content:"\f06c";}
146
- .icon-fire:before{content:"\f06d";}
147
- .icon-eye-open:before{content:"\f06e";}
148
- .icon-eye-close:before{content:"\f070";}
149
- .icon-warning-sign:before{content:"\f071";}
150
- .icon-plane:before{content:"\f072";}
151
- .icon-calendar:before{content:"\f073";}
152
- .icon-random:before{content:"\f074";}
153
- .icon-comment:before{content:"\f075";}
154
- .icon-magnet:before{content:"\f076";}
155
- .icon-chevron-up:before{content:"\f077";}
156
- .icon-chevron-down:before{content:"\f078";}
157
- .icon-retweet:before{content:"\f079";}
158
- .icon-shopping-cart:before{content:"\f07a";}
159
- .icon-folder-close:before{content:"\f07b";}
160
- .icon-folder-open:before{content:"\f07c";}
161
- .icon-resize-vertical:before{content:"\f07d";}
162
- .icon-resize-horizontal:before{content:"\f07e";}
163
- .icon-bar-chart:before{content:"\f080";}
164
- .icon-twitter-sign:before{content:"\f081";}
165
- .icon-facebook-sign:before{content:"\f082";}
166
- .icon-camera-retro:before{content:"\f083";}
167
- .icon-key:before{content:"\f084";}
168
- .icon-gears:before,.icon-cogs:before{content:"\f085";}
169
- .icon-comments:before{content:"\f086";}
170
- .icon-thumbs-up-alt:before{content:"\f087";}
171
- .icon-thumbs-down-alt:before{content:"\f088";}
172
- .icon-star-half:before{content:"\f089";}
173
- .icon-heart-empty:before{content:"\f08a";}
174
- .icon-signout:before{content:"\f08b";}
175
- .icon-linkedin-sign:before{content:"\f08c";}
176
- .icon-pushpin:before{content:"\f08d";}
177
- .icon-external-link:before{content:"\f08e";}
178
- .icon-signin:before{content:"\f090";}
179
- .icon-trophy:before{content:"\f091";}
180
- .icon-github-sign:before{content:"\f092";}
181
- .icon-upload-alt:before{content:"\f093";}
182
- .icon-lemon:before{content:"\f094";}
183
- .icon-phone:before{content:"\f095";}
184
- .icon-unchecked:before,.icon-check-empty:before{content:"\f096";}
185
- .icon-bookmark-empty:before{content:"\f097";}
186
- .icon-phone-sign:before{content:"\f098";}
187
- .icon-twitter:before{content:"\f099";}
188
- .icon-facebook:before{content:"\f09a";}
189
- .icon-github:before{content:"\f09b";}
190
- .icon-unlock:before{content:"\f09c";}
191
- .icon-credit-card:before{content:"\f09d";}
192
- .icon-rss:before{content:"\f09e";}
193
- .icon-hdd:before{content:"\f0a0";}
194
- .icon-bullhorn:before{content:"\f0a1";}
195
- .icon-bell:before{content:"\f0a2";}
196
- .icon-certificate:before{content:"\f0a3";}
197
- .icon-hand-right:before{content:"\f0a4";}
198
- .icon-hand-left:before{content:"\f0a5";}
199
- .icon-hand-up:before{content:"\f0a6";}
200
- .icon-hand-down:before{content:"\f0a7";}
201
- .icon-circle-arrow-left:before{content:"\f0a8";}
202
- .icon-circle-arrow-right:before{content:"\f0a9";}
203
- .icon-circle-arrow-up:before{content:"\f0aa";}
204
- .icon-circle-arrow-down:before{content:"\f0ab";}
205
- .icon-globe:before{content:"\f0ac";}
206
- .icon-wrench:before{content:"\f0ad";}
207
- .icon-tasks:before{content:"\f0ae";}
208
- .icon-filter:before{content:"\f0b0";}
209
- .icon-briefcase:before{content:"\f0b1";}
210
- .icon-fullscreen:before{content:"\f0b2";}
211
- .icon-group:before{content:"\f0c0";}
212
- .icon-link:before{content:"\f0c1";}
213
- .icon-cloud:before{content:"\f0c2";}
214
- .icon-beaker:before{content:"\f0c3";}
215
- .icon-cut:before{content:"\f0c4";}
216
- .icon-copy:before{content:"\f0c5";}
217
- .icon-paperclip:before,.icon-paper-clip:before{content:"\f0c6";}
218
- .icon-save:before{content:"\f0c7";}
219
- .icon-sign-blank:before{content:"\f0c8";}
220
- .icon-reorder:before{content:"\f0c9";}
221
- .icon-list-ul:before{content:"\f0ca";}
222
- .icon-list-ol:before{content:"\f0cb";}
223
- .icon-strikethrough:before{content:"\f0cc";}
224
- .icon-underline:before{content:"\f0cd";}
225
- .icon-table:before{content:"\f0ce";}
226
- .icon-magic:before{content:"\f0d0";}
227
- .icon-truck:before{content:"\f0d1";}
228
- .icon-pinterest:before{content:"\f0d2";}
229
- .icon-pinterest-sign:before{content:"\f0d3";}
230
- .icon-google-plus-sign:before{content:"\f0d4";}
231
- .icon-google-plus:before{content:"\f0d5";}
232
- .icon-money:before{content:"\f0d6";}
233
- .icon-caret-down:before{content:"\f0d7";}
234
- .icon-caret-up:before{content:"\f0d8";}
235
- .icon-caret-left:before{content:"\f0d9";}
236
- .icon-caret-right:before{content:"\f0da";}
237
- .icon-columns:before{content:"\f0db";}
238
- .icon-sort:before{content:"\f0dc";}
239
- .icon-sort-down:before{content:"\f0dd";}
240
- .icon-sort-up:before{content:"\f0de";}
241
- .icon-envelope:before{content:"\f0e0";}
242
- .icon-linkedin:before{content:"\f0e1";}
243
- .icon-rotate-left:before,.icon-undo:before{content:"\f0e2";}
244
- .icon-legal:before{content:"\f0e3";}
245
- .icon-dashboard:before{content:"\f0e4";}
246
- .icon-comment-alt:before{content:"\f0e5";}
247
- .icon-comments-alt:before{content:"\f0e6";}
248
- .icon-bolt:before{content:"\f0e7";}
249
- .icon-sitemap:before{content:"\f0e8";}
250
- .icon-umbrella:before{content:"\f0e9";}
251
- .icon-paste:before{content:"\f0ea";}
252
- .icon-lightbulb:before{content:"\f0eb";}
253
- .icon-exchange:before{content:"\f0ec";}
254
- .icon-cloud-download:before{content:"\f0ed";}
255
- .icon-cloud-upload:before{content:"\f0ee";}
256
- .icon-user-md:before{content:"\f0f0";}
257
- .icon-stethoscope:before{content:"\f0f1";}
258
- .icon-suitcase:before{content:"\f0f2";}
259
- .icon-bell-alt:before{content:"\f0f3";}
260
- .icon-coffee:before{content:"\f0f4";}
261
- .icon-food:before{content:"\f0f5";}
262
- .icon-file-text-alt:before{content:"\f0f6";}
263
- .icon-building:before{content:"\f0f7";}
264
- .icon-hospital:before{content:"\f0f8";}
265
- .icon-ambulance:before{content:"\f0f9";}
266
- .icon-medkit:before{content:"\f0fa";}
267
- .icon-fighter-jet:before{content:"\f0fb";}
268
- .icon-beer:before{content:"\f0fc";}
269
- .icon-h-sign:before{content:"\f0fd";}
270
- .icon-plus-sign-alt:before{content:"\f0fe";}
271
- .icon-double-angle-left:before{content:"\f100";}
272
- .icon-double-angle-right:before{content:"\f101";}
273
- .icon-double-angle-up:before{content:"\f102";}
274
- .icon-double-angle-down:before{content:"\f103";}
275
- .icon-angle-left:before{content:"\f104";}
276
- .icon-angle-right:before{content:"\f105";}
277
- .icon-angle-up:before{content:"\f106";}
278
- .icon-angle-down:before{content:"\f107";}
279
- .icon-desktop:before{content:"\f108";}
280
- .icon-laptop:before{content:"\f109";}
281
- .icon-tablet:before{content:"\f10a";}
282
- .icon-mobile-phone:before{content:"\f10b";}
283
- .icon-circle-blank:before{content:"\f10c";}
284
- .icon-quote-left:before{content:"\f10d";}
285
- .icon-quote-right:before{content:"\f10e";}
286
- .icon-spinner:before{content:"\f110";}
287
- .icon-circle:before{content:"\f111";}
288
- .icon-mail-reply:before,.icon-reply:before{content:"\f112";}
289
- .icon-github-alt:before{content:"\f113";}
290
- .icon-folder-close-alt:before{content:"\f114";}
291
- .icon-folder-open-alt:before{content:"\f115";}
292
- .icon-expand-alt:before{content:"\f116";}
293
- .icon-collapse-alt:before{content:"\f117";}
294
- .icon-smile:before{content:"\f118";}
295
- .icon-frown:before{content:"\f119";}
296
- .icon-meh:before{content:"\f11a";}
297
- .icon-gamepad:before{content:"\f11b";}
298
- .icon-keyboard:before{content:"\f11c";}
299
- .icon-flag-alt:before{content:"\f11d";}
300
- .icon-flag-checkered:before{content:"\f11e";}
301
- .icon-terminal:before{content:"\f120";}
302
- .icon-code:before{content:"\f121";}
303
- .icon-reply-all:before{content:"\f122";}
304
- .icon-mail-reply-all:before{content:"\f122";}
305
- .icon-star-half-full:before,.icon-star-half-empty:before{content:"\f123";}
306
- .icon-location-arrow:before{content:"\f124";}
307
- .icon-crop:before{content:"\f125";}
308
- .icon-code-fork:before{content:"\f126";}
309
- .icon-unlink:before{content:"\f127";}
310
- .icon-question:before{content:"\f128";}
311
- .icon-info:before{content:"\f129";}
312
- .icon-exclamation:before{content:"\f12a";}
313
- .icon-superscript:before{content:"\f12b";}
314
- .icon-subscript:before{content:"\f12c";}
315
- .icon-eraser:before{content:"\f12d";}
316
- .icon-puzzle-piece:before{content:"\f12e";}
317
- .icon-microphone:before{content:"\f130";}
318
- .icon-microphone-off:before{content:"\f131";}
319
- .icon-shield:before{content:"\f132";}
320
- .icon-calendar-empty:before{content:"\f133";}
321
- .icon-fire-extinguisher:before{content:"\f134";}
322
- .icon-rocket:before{content:"\f135";}
323
- .icon-maxcdn:before{content:"\f136";}
324
- .icon-chevron-sign-left:before{content:"\f137";}
325
- .icon-chevron-sign-right:before{content:"\f138";}
326
- .icon-chevron-sign-up:before{content:"\f139";}
327
- .icon-chevron-sign-down:before{content:"\f13a";}
328
- .icon-html5:before{content:"\f13b";}
329
- .icon-css3:before{content:"\f13c";}
330
- .icon-anchor:before{content:"\f13d";}
331
- .icon-unlock-alt:before{content:"\f13e";}
332
- .icon-bullseye:before{content:"\f140";}
333
- .icon-ellipsis-horizontal:before{content:"\f141";}
334
- .icon-ellipsis-vertical:before{content:"\f142";}
335
- .icon-rss-sign:before{content:"\f143";}
336
- .icon-play-sign:before{content:"\f144";}
337
- .icon-ticket:before{content:"\f145";}
338
- .icon-minus-sign-alt:before{content:"\f146";}
339
- .icon-check-minus:before{content:"\f147";}
340
- .icon-level-up:before{content:"\f148";}
341
- .icon-level-down:before{content:"\f149";}
342
- .icon-check-sign:before{content:"\f14a";}
343
- .icon-edit-sign:before{content:"\f14b";}
344
- .icon-external-link-sign:before{content:"\f14c";}
345
- .icon-share-sign:before{content:"\f14d";}
346
- .icon-compass:before{content:"\f14e";}
347
- .icon-collapse:before{content:"\f150";}
348
- .icon-collapse-top:before{content:"\f151";}
349
- .icon-expand:before{content:"\f152";}
350
- .icon-euro:before,.icon-eur:before{content:"\f153";}
351
- .icon-gbp:before{content:"\f154";}
352
- .icon-dollar:before,.icon-usd:before{content:"\f155";}
353
- .icon-rupee:before,.icon-inr:before{content:"\f156";}
354
- .icon-yen:before,.icon-jpy:before{content:"\f157";}
355
- .icon-renminbi:before,.icon-cny:before{content:"\f158";}
356
- .icon-won:before,.icon-krw:before{content:"\f159";}
357
- .icon-bitcoin:before,.icon-btc:before{content:"\f15a";}
358
- .icon-file:before{content:"\f15b";}
359
- .icon-file-text:before{content:"\f15c";}
360
- .icon-sort-by-alphabet:before{content:"\f15d";}
361
- .icon-sort-by-alphabet-alt:before{content:"\f15e";}
362
- .icon-sort-by-attributes:before{content:"\f160";}
363
- .icon-sort-by-attributes-alt:before{content:"\f161";}
364
- .icon-sort-by-order:before{content:"\f162";}
365
- .icon-sort-by-order-alt:before{content:"\f163";}
366
- .icon-thumbs-up:before{content:"\f164";}
367
- .icon-thumbs-down:before{content:"\f165";}
368
- .icon-youtube-sign:before{content:"\f166";}
369
- .icon-youtube:before{content:"\f167";}
370
- .icon-xing:before{content:"\f168";}
371
- .icon-xing-sign:before{content:"\f169";}
372
- .icon-youtube-play:before{content:"\f16a";}
373
- .icon-dropbox:before{content:"\f16b";}
374
- .icon-stackexchange:before{content:"\f16c";}
375
- .icon-instagram:before{content:"\f16d";}
376
- .icon-flickr:before{content:"\f16e";}
377
- .icon-adn:before{content:"\f170";}
378
- .icon-bitbucket:before{content:"\f171";}
379
- .icon-bitbucket-sign:before{content:"\f172";}
380
- .icon-tumblr:before{content:"\f173";}
381
- .icon-tumblr-sign:before{content:"\f174";}
382
- .icon-long-arrow-down:before{content:"\f175";}
383
- .icon-long-arrow-up:before{content:"\f176";}
384
- .icon-long-arrow-left:before{content:"\f177";}
385
- .icon-long-arrow-right:before{content:"\f178";}
386
- .icon-apple:before{content:"\f179";}
387
- .icon-windows:before{content:"\f17a";}
388
- .icon-android:before{content:"\f17b";}
389
- .icon-linux:before{content:"\f17c";}
390
- .icon-dribbble:before{content:"\f17d";}
391
- .icon-skype:before{content:"\f17e";}
392
- .icon-foursquare:before{content:"\f180";}
393
- .icon-trello:before{content:"\f181";}
394
- .icon-female:before{content:"\f182";}
395
- .icon-male:before{content:"\f183";}
396
- .icon-gittip:before{content:"\f184";}
397
- .icon-sun:before{content:"\f185";}
398
- .icon-moon:before{content:"\f186";}
399
- .icon-archive:before{content:"\f187";}
400
- .icon-bug:before{content:"\f188";}
401
- .icon-vk:before{content:"\f189";}
402
- .icon-weibo:before{content:"\f18a";}
403
- .icon-renren:before{content:"\f18b";}