locomotivecms_wagon 2.4.1 → 3.0.0.beta2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +3 -3
- data/generators/blank/app/assets/.babelrc +3 -0
- data/generators/blank/app/assets/fonts/.empty_directory +1 -0
- data/generators/blank/app/assets/javascripts/app.js +19 -0
- data/generators/blank/app/assets/javascripts/sections/_manager.js +94 -0
- data/generators/blank/app/assets/javascripts/sections/index.js +5 -0
- data/generators/blank/app/assets/package.json.tt +35 -0
- data/generators/blank/app/assets/postcss.config.js +6 -0
- data/generators/blank/app/assets/stylesheets/app.scss +1 -0
- data/generators/blank/app/assets/webpack.common.js +47 -0
- data/generators/blank/app/assets/webpack.dev.js +7 -0
- data/generators/blank/app/assets/webpack.prod.js +12 -0
- data/generators/blank/app/views/pages/404.liquid +1 -1
- data/generators/blank/app/views/pages/index.liquid +7 -15
- data/generators/blank/app/views/pages/layouts/default.liquid +22 -0
- data/generators/blank/app/views/sections/.empty_directory +1 -0
- data/generators/page/template.liquid.tt +11 -0
- data/generators/section/%type%.js.tt +26 -0
- data/generators/section/template.liquid.tt +183 -0
- data/lib/locomotive/wagon.rb +3 -2
- data/lib/locomotive/wagon/cli.rb +38 -10
- data/lib/locomotive/wagon/commands/clone_command.rb +3 -0
- data/lib/locomotive/wagon/commands/concerns/deploy_file_concern.rb +1 -1
- data/lib/locomotive/wagon/commands/concerns/steam_concern.rb +1 -1
- data/lib/locomotive/wagon/commands/loggers/sync_logger.rb +7 -0
- data/lib/locomotive/wagon/commands/pull_command.rb +1 -1
- data/lib/locomotive/wagon/commands/pull_sub_commands/concerns/assets_concern.rb +19 -10
- data/lib/locomotive/wagon/commands/pull_sub_commands/pull_base_command.rb +7 -3
- data/lib/locomotive/wagon/commands/pull_sub_commands/pull_content_entries_command.rb +11 -2
- data/lib/locomotive/wagon/commands/pull_sub_commands/pull_content_types_command.rb +1 -1
- data/lib/locomotive/wagon/commands/pull_sub_commands/pull_site_command.rb +24 -5
- data/lib/locomotive/wagon/commands/pull_sub_commands/pull_translations_command.rb +6 -1
- data/lib/locomotive/wagon/commands/push_command.rb +6 -4
- data/lib/locomotive/wagon/commands/push_sub_commands/push_pages_command.rb +6 -1
- data/lib/locomotive/wagon/commands/push_sub_commands/push_sections_command.rb +23 -0
- data/lib/locomotive/wagon/commands/push_sub_commands/push_site_command.rb +2 -0
- data/lib/locomotive/wagon/commands/serve_command.rb +1 -1
- data/lib/locomotive/wagon/commands/sync_command.rb +1 -1
- data/lib/locomotive/wagon/commands/sync_sub_commands/concerns/base_concern.rb +2 -2
- data/lib/locomotive/wagon/commands/sync_sub_commands/sync_pages_command.rb +48 -37
- data/lib/locomotive/wagon/commands/sync_sub_commands/sync_site_command.rb +15 -12
- data/lib/locomotive/wagon/commands/sync_sub_commands/sync_translations_command.rb +12 -0
- data/lib/locomotive/wagon/decorators/concerns/persist_assets_concern.rb +1 -1
- data/lib/locomotive/wagon/decorators/content_entry_decorator.rb +1 -1
- data/lib/locomotive/wagon/decorators/content_type_decorator.rb +5 -1
- data/lib/locomotive/wagon/decorators/content_type_field_decorator.rb +5 -1
- data/lib/locomotive/wagon/decorators/page_decorator.rb +11 -1
- data/lib/locomotive/wagon/decorators/section_decorator.rb +35 -0
- data/lib/locomotive/wagon/decorators/site_decorator.rb +12 -4
- data/lib/locomotive/wagon/decorators/theme_asset_decorator.rb +2 -2
- data/lib/locomotive/wagon/generators/page.rb +2 -12
- data/lib/locomotive/wagon/generators/section.rb +82 -0
- data/lib/locomotive/wagon/generators/site.rb +0 -3
- data/lib/locomotive/wagon/generators/site/base.rb +11 -28
- data/lib/locomotive/wagon/generators/site/blank.rb +1 -17
- data/lib/locomotive/wagon/generators/site/cloned.rb +1 -4
- data/lib/locomotive/wagon/generators/snippet.rb +3 -11
- data/lib/locomotive/wagon/middlewares/error_page.rb +26 -6
- data/lib/locomotive/wagon/tools/listen.rb +3 -3
- data/lib/locomotive/wagon/version.rb +1 -1
- data/locomotivecms_wagon.gemspec +7 -6
- data/spec/fixtures/cassettes/authenticate.yml +47 -47
- data/spec/fixtures/cassettes/delete.yml +261 -261
- data/spec/fixtures/cassettes/push.yml +4571 -1783
- data/spec/fixtures/cassettes/sync.yml +11483 -0
- data/spec/integration/cli_spec.rb +1 -1
- data/spec/integration/commands/delete_command_spec.rb +1 -2
- data/spec/integration/commands/push_command_spec.rb +4 -4
- data/spec/integration/commands/sync_command_spec.rb +54 -0
- data/spec/integration/generators/page_spec.rb +1 -1
- data/spec/unit/commands/pull_sub_commands/concerns/assets_concern_spec.rb +3 -3
- metadata +55 -306
- data/generators/blank/app/views/pages/404.liquid.haml +0 -11
- data/generators/blank/app/views/pages/index.liquid.haml +0 -16
- data/generators/bootstrap/Gemfile.tt +0 -24
- data/generators/bootstrap/Guardfile +0 -22
- data/generators/bootstrap/app/content_types/.empty_directory +0 -1
- data/generators/bootstrap/app/views/pages/404.liquid +0 -18
- data/generators/bootstrap/app/views/pages/404.liquid.haml +0 -14
- data/generators/bootstrap/app/views/pages/index.liquid +0 -31
- data/generators/bootstrap/app/views/pages/index.liquid.haml +0 -25
- data/generators/bootstrap/app/views/pages/layouts/default.liquid +0 -31
- data/generators/bootstrap/app/views/pages/layouts/default.liquid.haml +0 -30
- data/generators/bootstrap/app/views/pages/layouts/simple.liquid +0 -36
- data/generators/bootstrap/app/views/pages/layouts/simple.liquid.haml +0 -29
- data/generators/bootstrap/app/views/snippets/footer.liquid +0 -5
- data/generators/bootstrap/app/views/snippets/footer.liquid.haml +0 -3
- data/generators/bootstrap/app/views/snippets/nav.liquid +0 -26
- data/generators/bootstrap/app/views/snippets/nav.liquid.haml +0 -19
- data/generators/bootstrap/config/deploy.yml +0 -16
- data/generators/bootstrap/config/metafields_schema.yml +0 -56
- data/generators/bootstrap/config/site.yml.tt +0 -48
- data/generators/bootstrap/config/translations.yml +0 -8
- data/generators/bootstrap/data/.empty_directory +0 -1
- data/generators/bootstrap/icon.png +0 -0
- data/generators/bootstrap/public/fonts/bootstrap/glyphicons-halflings-regular.eot +0 -0
- data/generators/bootstrap/public/fonts/bootstrap/glyphicons-halflings-regular.svg +0 -288
- data/generators/bootstrap/public/fonts/bootstrap/glyphicons-halflings-regular.ttf +0 -0
- data/generators/bootstrap/public/fonts/bootstrap/glyphicons-halflings-regular.woff +0 -0
- data/generators/bootstrap/public/fonts/bootstrap/glyphicons-halflings-regular.woff2 +0 -0
- data/generators/bootstrap/public/images/favicon.png +0 -0
- data/generators/bootstrap/public/javascripts/application.js +0 -2
- data/generators/bootstrap/public/javascripts/bootstrap.min.js +0 -7
- data/generators/bootstrap/public/javascripts/bootstrap/affix.js +0 -162
- data/generators/bootstrap/public/javascripts/bootstrap/alert.js +0 -94
- data/generators/bootstrap/public/javascripts/bootstrap/button.js +0 -120
- data/generators/bootstrap/public/javascripts/bootstrap/carousel.js +0 -237
- data/generators/bootstrap/public/javascripts/bootstrap/collapse.js +0 -211
- data/generators/bootstrap/public/javascripts/bootstrap/dropdown.js +0 -165
- data/generators/bootstrap/public/javascripts/bootstrap/modal.js +0 -337
- data/generators/bootstrap/public/javascripts/bootstrap/popover.js +0 -108
- data/generators/bootstrap/public/javascripts/bootstrap/scrollspy.js +0 -172
- data/generators/bootstrap/public/javascripts/bootstrap/tab.js +0 -155
- data/generators/bootstrap/public/javascripts/bootstrap/tooltip.js +0 -514
- data/generators/bootstrap/public/javascripts/bootstrap/transition.js +0 -59
- data/generators/bootstrap/public/javascripts/jquery.min.js +0 -5
- data/generators/bootstrap/public/stylesheets/application.css +0 -7
- data/generators/bootstrap/public/stylesheets/application.scss +0 -7
- data/generators/bootstrap/public/stylesheets/bootstrap.css +0 -5
- data/generators/bootstrap/public/stylesheets/bootstrap.scss +0 -63
- data/generators/bootstrap/public/stylesheets/bootstrap/_alerts.scss +0 -73
- data/generators/bootstrap/public/stylesheets/bootstrap/_badges.scss +0 -68
- data/generators/bootstrap/public/stylesheets/bootstrap/_breadcrumbs.scss +0 -28
- data/generators/bootstrap/public/stylesheets/bootstrap/_button-groups.scss +0 -244
- data/generators/bootstrap/public/stylesheets/bootstrap/_buttons.scss +0 -168
- data/generators/bootstrap/public/stylesheets/bootstrap/_carousel.scss +0 -269
- data/generators/bootstrap/public/stylesheets/bootstrap/_close.scss +0 -36
- data/generators/bootstrap/public/stylesheets/bootstrap/_code.scss +0 -69
- data/generators/bootstrap/public/stylesheets/bootstrap/_component-animations.scss +0 -37
- data/generators/bootstrap/public/stylesheets/bootstrap/_dropdowns.scss +0 -216
- data/generators/bootstrap/public/stylesheets/bootstrap/_forms.scss +0 -611
- data/generators/bootstrap/public/stylesheets/bootstrap/_glyphicons.scss +0 -307
- data/generators/bootstrap/public/stylesheets/bootstrap/_grid.scss +0 -84
- data/generators/bootstrap/public/stylesheets/bootstrap/_input-groups.scss +0 -167
- data/generators/bootstrap/public/stylesheets/bootstrap/_jumbotron.scss +0 -52
- data/generators/bootstrap/public/stylesheets/bootstrap/_labels.scss +0 -66
- data/generators/bootstrap/public/stylesheets/bootstrap/_list-group.scss +0 -130
- data/generators/bootstrap/public/stylesheets/bootstrap/_media.scss +0 -66
- data/generators/bootstrap/public/stylesheets/bootstrap/_mixins.scss +0 -40
- data/generators/bootstrap/public/stylesheets/bootstrap/_modals.scss +0 -150
- data/generators/bootstrap/public/stylesheets/bootstrap/_navbar.scss +0 -662
- data/generators/bootstrap/public/stylesheets/bootstrap/_navs.scss +0 -242
- data/generators/bootstrap/public/stylesheets/bootstrap/_normalize.scss +0 -424
- data/generators/bootstrap/public/stylesheets/bootstrap/_pager.scss +0 -54
- data/generators/bootstrap/public/stylesheets/bootstrap/_pagination.scss +0 -89
- data/generators/bootstrap/public/stylesheets/bootstrap/_panels.scss +0 -271
- data/generators/bootstrap/public/stylesheets/bootstrap/_popovers.scss +0 -131
- data/generators/bootstrap/public/stylesheets/bootstrap/_print.scss +0 -101
- data/generators/bootstrap/public/stylesheets/bootstrap/_progress-bars.scss +0 -87
- data/generators/bootstrap/public/stylesheets/bootstrap/_responsive-embed.scss +0 -35
- data/generators/bootstrap/public/stylesheets/bootstrap/_responsive-utilities.scss +0 -179
- data/generators/bootstrap/public/stylesheets/bootstrap/_scaffolding.scss +0 -161
- data/generators/bootstrap/public/stylesheets/bootstrap/_tables.scss +0 -234
- data/generators/bootstrap/public/stylesheets/bootstrap/_theme.scss +0 -291
- data/generators/bootstrap/public/stylesheets/bootstrap/_thumbnails.scss +0 -38
- data/generators/bootstrap/public/stylesheets/bootstrap/_tooltip.scss +0 -101
- data/generators/bootstrap/public/stylesheets/bootstrap/_type.scss +0 -298
- data/generators/bootstrap/public/stylesheets/bootstrap/_utilities.scss +0 -55
- data/generators/bootstrap/public/stylesheets/bootstrap/_variables.scss +0 -872
- data/generators/bootstrap/public/stylesheets/bootstrap/_wells.scss +0 -29
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_alerts.scss +0 -14
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_background-variant.scss +0 -12
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_border-radius.scss +0 -18
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_buttons.scss +0 -68
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_center-block.scss +0 -7
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_clearfix.scss +0 -22
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_forms.scss +0 -88
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_gradients.scss +0 -58
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_grid-framework.scss +0 -81
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_grid.scss +0 -122
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_hide-text.scss +0 -21
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_image.scss +0 -33
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_labels.scss +0 -12
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_list-group.scss +0 -32
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_nav-divider.scss +0 -10
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_nav-vertical-align.scss +0 -9
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_opacity.scss +0 -8
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_pagination.scss +0 -24
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_panels.scss +0 -24
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_progress-bar.scss +0 -10
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_reset-filter.scss +0 -8
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_reset-text.scss +0 -18
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_resize.scss +0 -6
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_responsive-visibility.scss +0 -21
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_size.scss +0 -10
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_tab-focus.scss +0 -9
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_table-row.scss +0 -28
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_text-emphasis.scss +0 -12
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_text-overflow.scss +0 -8
- data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_vendor-prefixes.scss +0 -222
- data/generators/foundation/Gemfile.tt +0 -24
- data/generators/foundation/Guardfile +0 -22
- data/generators/foundation/app/content_types/.gitkeep +0 -0
- data/generators/foundation/app/views/pages/404.liquid +0 -11
- data/generators/foundation/app/views/pages/404.liquid.haml +0 -11
- data/generators/foundation/app/views/pages/index.liquid +0 -172
- data/generators/foundation/app/views/pages/index.liquid.haml +0 -144
- data/generators/foundation/app/views/snippets/.gitkeep +0 -0
- data/generators/foundation/config/deploy.yml +0 -16
- data/generators/foundation/config/metafields_schema.yml +0 -56
- data/generators/foundation/config/site.yml +0 -48
- data/generators/foundation/config/translations.yml +0 -8
- data/generators/foundation/data/.gitkeep +0 -0
- data/generators/foundation/log/.gitkeep +0 -0
- data/generators/foundation/public/images/.gitkeep +0 -0
- data/generators/foundation/public/javascripts/app.js +0 -1
- data/generators/foundation/public/javascripts/vendor/foundation.js +0 -11788
- data/generators/foundation/public/javascripts/vendor/foundation.min.js +0 -5
- data/generators/foundation/public/javascripts/vendor/what-input.js +0 -212
- data/generators/foundation/public/javascripts/vendor/what-input.min.js +0 -1
- data/generators/foundation/public/stylesheets/_settings.scss +0 -869
- data/generators/foundation/public/stylesheets/app.css +0 -0
- data/generators/foundation/public/stylesheets/app.scss +0 -52
- data/generators/foundation/public/stylesheets/foundation.css +0 -5805
- data/generators/foundation/public/stylesheets/foundation6/_global.scss +0 -249
- data/generators/foundation/public/stylesheets/foundation6/components/_accordion-menu.scss +0 -171
- data/generators/foundation/public/stylesheets/foundation6/components/_accordion.scss +0 -155
- data/generators/foundation/public/stylesheets/foundation6/components/_badge.scss +0 -63
- data/generators/foundation/public/stylesheets/foundation6/components/_breadcrumbs.scss +0 -117
- data/generators/foundation/public/stylesheets/foundation6/components/_button-group.scss +0 -253
- data/generators/foundation/public/stylesheets/foundation6/components/_button.scss +0 -385
- data/generators/foundation/public/stylesheets/foundation6/components/_callout.scss +0 -106
- data/generators/foundation/public/stylesheets/foundation6/components/_card.scss +0 -129
- data/generators/foundation/public/stylesheets/foundation6/components/_close-button.scss +0 -102
- data/generators/foundation/public/stylesheets/foundation6/components/_drilldown.scss +0 -142
- data/generators/foundation/public/stylesheets/foundation6/components/_dropdown-menu.scss +0 -274
- data/generators/foundation/public/stylesheets/foundation6/components/_dropdown.scss +0 -79
- data/generators/foundation/public/stylesheets/foundation6/components/_flex-video.scss +0 -1
- data/generators/foundation/public/stylesheets/foundation6/components/_flex.scss +0 -117
- data/generators/foundation/public/stylesheets/foundation6/components/_float.scss +0 -27
- data/generators/foundation/public/stylesheets/foundation6/components/_label.scss +0 -64
- data/generators/foundation/public/stylesheets/foundation6/components/_media-object.scss +0 -114
- data/generators/foundation/public/stylesheets/foundation6/components/_menu-icon.scss +0 -9
- data/generators/foundation/public/stylesheets/foundation6/components/_menu.scss +0 -495
- data/generators/foundation/public/stylesheets/foundation6/components/_off-canvas.scss +0 -505
- data/generators/foundation/public/stylesheets/foundation6/components/_orbit.scss +0 -196
- data/generators/foundation/public/stylesheets/foundation6/components/_pagination.scss +0 -193
- data/generators/foundation/public/stylesheets/foundation6/components/_progress-bar.scss +0 -64
- data/generators/foundation/public/stylesheets/foundation6/components/_responsive-embed.scss +0 -70
- data/generators/foundation/public/stylesheets/foundation6/components/_reveal.scss +0 -180
- data/generators/foundation/public/stylesheets/foundation6/components/_slider.scss +0 -137
- data/generators/foundation/public/stylesheets/foundation6/components/_sticky.scss +0 -39
- data/generators/foundation/public/stylesheets/foundation6/components/_switch.scss +0 -247
- data/generators/foundation/public/stylesheets/foundation6/components/_table.scss +0 -330
- data/generators/foundation/public/stylesheets/foundation6/components/_tabs.scss +0 -196
- data/generators/foundation/public/stylesheets/foundation6/components/_thumbnail.scss +0 -67
- data/generators/foundation/public/stylesheets/foundation6/components/_title-bar.scss +0 -84
- data/generators/foundation/public/stylesheets/foundation6/components/_tooltip.scss +0 -160
- data/generators/foundation/public/stylesheets/foundation6/components/_top-bar.scss +0 -175
- data/generators/foundation/public/stylesheets/foundation6/components/_visibility.scss +0 -132
- data/generators/foundation/public/stylesheets/foundation6/forms/_checkbox.scss +0 -41
- data/generators/foundation/public/stylesheets/foundation6/forms/_error.scss +0 -88
- data/generators/foundation/public/stylesheets/foundation6/forms/_fieldset.scss +0 -53
- data/generators/foundation/public/stylesheets/foundation6/forms/_forms.scss +0 -34
- data/generators/foundation/public/stylesheets/foundation6/forms/_help-text.scss +0 -30
- data/generators/foundation/public/stylesheets/foundation6/forms/_input-group.scss +0 -142
- data/generators/foundation/public/stylesheets/foundation6/forms/_label.scss +0 -50
- data/generators/foundation/public/stylesheets/foundation6/forms/_meter.scss +0 -116
- data/generators/foundation/public/stylesheets/foundation6/forms/_progress.scss +0 -94
- data/generators/foundation/public/stylesheets/foundation6/forms/_range.scss +0 -149
- data/generators/foundation/public/stylesheets/foundation6/forms/_select.scss +0 -86
- data/generators/foundation/public/stylesheets/foundation6/forms/_text.scss +0 -179
- data/generators/foundation/public/stylesheets/foundation6/foundation.scss +0 -133
- data/generators/foundation/public/stylesheets/foundation6/grid/_classes.scss +0 -176
- data/generators/foundation/public/stylesheets/foundation6/grid/_column.scss +0 -112
- data/generators/foundation/public/stylesheets/foundation6/grid/_flex-grid.scss +0 -259
- data/generators/foundation/public/stylesheets/foundation6/grid/_grid.scss +0 -48
- data/generators/foundation/public/stylesheets/foundation6/grid/_gutter.scss +0 -82
- data/generators/foundation/public/stylesheets/foundation6/grid/_layout.scss +0 -76
- data/generators/foundation/public/stylesheets/foundation6/grid/_position.scss +0 -76
- data/generators/foundation/public/stylesheets/foundation6/grid/_row.scss +0 -99
- data/generators/foundation/public/stylesheets/foundation6/grid/_size.scss +0 -24
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/_classes.scss +0 -109
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/_settings.scss +0 -61
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/effects/_fade.scss +0 -32
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/effects/_hinge.scss +0 -65
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/effects/_shake.scss +0 -15
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/effects/_slide.scss +0 -41
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/effects/_spin.scss +0 -28
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/effects/_wiggle.scss +0 -13
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/effects/_zoom.scss +0 -15
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/motion-ui.scss +0 -29
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/transitions/_fade.scss +0 -28
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/transitions/_hinge.scss +0 -43
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/transitions/_slide.scss +0 -42
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/transitions/_spin.scss +0 -39
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/transitions/_zoom.scss +0 -39
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/util/_animation.scss +0 -7
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/util/_args.scss +0 -15
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/util/_keyframe.scss +0 -136
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/util/_selector.scss +0 -23
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/util/_series.scss +0 -54
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/util/_transition.scss +0 -45
- data/generators/foundation/public/stylesheets/foundation6/motion-ui/util/_unit.scss +0 -7
- data/generators/foundation/public/stylesheets/foundation6/prototype/_arrow.scss +0 -36
- data/generators/foundation/public/stylesheets/foundation6/prototype/_border-box.scss +0 -35
- data/generators/foundation/public/stylesheets/foundation6/prototype/_border-none.scss +0 -35
- data/generators/foundation/public/stylesheets/foundation6/prototype/_bordered.scss +0 -54
- data/generators/foundation/public/stylesheets/foundation6/prototype/_box.scss +0 -23
- data/generators/foundation/public/stylesheets/foundation6/prototype/_display.scss +0 -50
- data/generators/foundation/public/stylesheets/foundation6/prototype/_font-styling.scss +0 -95
- data/generators/foundation/public/stylesheets/foundation6/prototype/_list-style-type.scss +0 -95
- data/generators/foundation/public/stylesheets/foundation6/prototype/_overflow.scss +0 -72
- data/generators/foundation/public/stylesheets/foundation6/prototype/_position.scss +0 -114
- data/generators/foundation/public/stylesheets/foundation6/prototype/_prototype.scss +0 -87
- data/generators/foundation/public/stylesheets/foundation6/prototype/_relation.scss +0 -157
- data/generators/foundation/public/stylesheets/foundation6/prototype/_rotate.scss +0 -31
- data/generators/foundation/public/stylesheets/foundation6/prototype/_rounded.scss +0 -54
- data/generators/foundation/public/stylesheets/foundation6/prototype/_separator.scss +0 -96
- data/generators/foundation/public/stylesheets/foundation6/prototype/_shadow.scss +0 -43
- data/generators/foundation/public/stylesheets/foundation6/prototype/_sizing.scss +0 -73
- data/generators/foundation/public/stylesheets/foundation6/prototype/_spacing.scss +0 -204
- data/generators/foundation/public/stylesheets/foundation6/prototype/_text-decoration.scss +0 -48
- data/generators/foundation/public/stylesheets/foundation6/prototype/_text-transformation.scss +0 -48
- data/generators/foundation/public/stylesheets/foundation6/prototype/_text-utilities.scss +0 -88
- data/generators/foundation/public/stylesheets/foundation6/settings/_settings.scss +0 -869
- data/generators/foundation/public/stylesheets/foundation6/typography/_alignment.scss +0 -22
- data/generators/foundation/public/stylesheets/foundation6/typography/_base.scss +0 -509
- data/generators/foundation/public/stylesheets/foundation6/typography/_helpers.scss +0 -80
- data/generators/foundation/public/stylesheets/foundation6/typography/_print.scss +0 -86
- data/generators/foundation/public/stylesheets/foundation6/typography/_typography.scss +0 -26
- data/generators/foundation/public/stylesheets/foundation6/util/_breakpoint.scss +0 -348
- data/generators/foundation/public/stylesheets/foundation6/util/_color.scss +0 -129
- data/generators/foundation/public/stylesheets/foundation6/util/_direction.scss +0 -31
- data/generators/foundation/public/stylesheets/foundation6/util/_flex.scss +0 -85
- data/generators/foundation/public/stylesheets/foundation6/util/_math.scss +0 -72
- data/generators/foundation/public/stylesheets/foundation6/util/_mixins.scss +0 -313
- data/generators/foundation/public/stylesheets/foundation6/util/_selector.scss +0 -41
- data/generators/foundation/public/stylesheets/foundation6/util/_typography.scss +0 -26
- data/generators/foundation/public/stylesheets/foundation6/util/_unit.scss +0 -152
- data/generators/foundation/public/stylesheets/foundation6/util/_util.scss +0 -14
- data/generators/foundation/public/stylesheets/foundation6/util/_value.scss +0 -160
- data/generators/foundation/public/stylesheets/foundation6/vendor/normalize-scss/sass/_normalize.scss +0 -3
- data/generators/foundation/public/stylesheets/foundation6/vendor/normalize-scss/sass/normalize/_import-now.scss +0 -11
- data/generators/foundation/public/stylesheets/foundation6/vendor/normalize-scss/sass/normalize/_normalize-mixin.scss +0 -676
- data/generators/foundation/public/stylesheets/foundation6/vendor/normalize-scss/sass/normalize/_variables.scss +0 -36
- data/generators/foundation/public/stylesheets/foundation6/vendor/normalize-scss/sass/normalize/_vertical-rhythm.scss +0 -61
- data/generators/foundation/public/stylesheets/foundation6/vendor/sassy-lists/stylesheets/functions/_contain.scss +0 -31
- data/generators/foundation/public/stylesheets/foundation6/vendor/sassy-lists/stylesheets/functions/_purge.scss +0 -38
- data/generators/foundation/public/stylesheets/foundation6/vendor/sassy-lists/stylesheets/functions/_remove.scss +0 -31
- data/generators/foundation/public/stylesheets/foundation6/vendor/sassy-lists/stylesheets/functions/_replace.scss +0 -46
- data/generators/foundation/public/stylesheets/foundation6/vendor/sassy-lists/stylesheets/functions/_to-list.scss +0 -27
- data/generators/foundation/public/stylesheets/foundation6/vendor/sassy-lists/stylesheets/helpers/_missing-dependencies.scss +0 -25
- data/generators/foundation/public/stylesheets/foundation6/vendor/sassy-lists/stylesheets/helpers/_true.scss +0 -13
- data/generators/foundation/public/stylesheets/foundation6/xy-grid/_cell.scss +0 -169
- data/generators/foundation/public/stylesheets/foundation6/xy-grid/_classes.scss +0 -476
- data/generators/foundation/public/stylesheets/foundation6/xy-grid/_collapse.scss +0 -74
- data/generators/foundation/public/stylesheets/foundation6/xy-grid/_frame.scss +0 -85
- data/generators/foundation/public/stylesheets/foundation6/xy-grid/_grid.scss +0 -35
- data/generators/foundation/public/stylesheets/foundation6/xy-grid/_gutters.scss +0 -45
- data/generators/foundation/public/stylesheets/foundation6/xy-grid/_layout.scss +0 -33
- data/generators/foundation/public/stylesheets/foundation6/xy-grid/_position.scss +0 -28
- data/generators/foundation/public/stylesheets/foundation6/xy-grid/_xy-grid.scss +0 -51
- data/generators/page/template.liquid.haml.tt +0 -47
- data/generators/snippet/template.liquid.haml.tt +0 -4
- data/lib/locomotive/wagon/generators/site/bootstrap.rb +0 -52
- data/lib/locomotive/wagon/generators/site/foundation.rb +0 -44
- data/lib/locomotive/wagon/generators/site/line_case.rb +0 -20
@@ -1,24 +0,0 @@
|
|
1
|
-
source 'https://rubygems.org'
|
2
|
-
|
3
|
-
gem 'locomotivecms_wagon', '~> <%= config[:version] -%>'
|
4
|
-
|
5
|
-
gem 'guard-livereload', '~> 2.5.1'
|
6
|
-
|
7
|
-
group :development do
|
8
|
-
# Mac OS X
|
9
|
-
gem 'rb-fsevent', '~> 0.9.1', require: 'rb-fsevent' if RUBY_PLATFORM.include?('darwin')
|
10
|
-
|
11
|
-
# Unix
|
12
|
-
gem 'therubyracer', require: 'v8', platforms: :ruby unless RUBY_PLATFORM.include?('darwin')
|
13
|
-
|
14
|
-
gem 'rb-inotify', '~> 0.9', require: 'rb-inotify' if RUBY_PLATFORM.include?('linux')
|
15
|
-
|
16
|
-
# Windows
|
17
|
-
gem 'wdm', '~> 0.1.1', require: 'wdm' if RUBY_PLATFORM =~ /mswin|mingw/i
|
18
|
-
end
|
19
|
-
|
20
|
-
group :misc do
|
21
|
-
# Add your extra gems here
|
22
|
-
# gem 'susy', require: 'susy'
|
23
|
-
# gem 'bourbon', require: 'bourbon'
|
24
|
-
end
|
@@ -1,22 +0,0 @@
|
|
1
|
-
# LiveReload installation
|
2
|
-
#
|
3
|
-
# 1. Add the guard-livereload gem to your Gemfile OR uncomment the line:
|
4
|
-
#
|
5
|
-
# gem 'guard-livereload'
|
6
|
-
#
|
7
|
-
# 2. Install the gem on your machine
|
8
|
-
#
|
9
|
-
# bundle install
|
10
|
-
#
|
11
|
-
# 3. Launch Guard
|
12
|
-
#
|
13
|
-
# bundle exec guard
|
14
|
-
#
|
15
|
-
|
16
|
-
guard 'livereload', host: '0.0.0.0', port: ENV['WAGON_LIVERELOAD_PORT'] || 35729, grace_period: 0.5 do
|
17
|
-
watch(%r{app/content_types/.+\.yml$})
|
18
|
-
watch(%r{app/views/.+\.liquid})
|
19
|
-
watch(%r{config/.+\.yml$})
|
20
|
-
watch(%r{data/.+\.yml$})
|
21
|
-
watch(%r{public/((stylesheets|javascripts)/(.+\.(css|js))).*}) { |m| "/#{m[1]}" }
|
22
|
-
end
|
File without changes
|
@@ -1,172 +0,0 @@
|
|
1
|
-
---
|
2
|
-
title: Home page
|
3
|
-
published: true
|
4
|
-
---
|
5
|
-
<!doctype html>
|
6
|
-
<html class="no-js" lang="en">
|
7
|
-
<head>
|
8
|
-
<meta charset="utf-8">
|
9
|
-
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
10
|
-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
11
|
-
<title>Foundation for Sites</title>
|
12
|
-
{{ 'app.css' | stylesheet_tag }}
|
13
|
-
</head>
|
14
|
-
<body>
|
15
|
-
<div class="row">
|
16
|
-
<div class="large-12 columns">
|
17
|
-
<h1>Welcome to Foundation</h1>
|
18
|
-
</div>
|
19
|
-
</div>
|
20
|
-
|
21
|
-
<div class="row">
|
22
|
-
<div class="large-12 columns">
|
23
|
-
<div class="callout">
|
24
|
-
<h3>We’re stoked you want to try Foundation! </h3>
|
25
|
-
<p>To get going, this file (index.html) includes some basic styles you can modify, play around with, or totally destroy to get going.</p>
|
26
|
-
<p>Once you've exhausted the fun in this document, you should check out:</p>
|
27
|
-
<div class="row">
|
28
|
-
<div class="large-4 medium-4 columns">
|
29
|
-
<p><a href="http://foundation.zurb.com/docs">Foundation Documentation</a><br />Everything you need to know about using the framework.</p>
|
30
|
-
</div>
|
31
|
-
<div class="large-4 medium-4 columns">
|
32
|
-
<p><a href="http://zurb.com/university/code-skills">Foundation Code Skills</a><br />These online courses offer you a chance to better understand how Foundation works and how you can master it to create awesome projects.</p>
|
33
|
-
</div>
|
34
|
-
<div class="large-4 medium-4 columns">
|
35
|
-
<p><a href="http://foundation.zurb.com/forum">Foundation Forum</a><br />Join the Foundation community to ask a question or show off your knowlege.</p>
|
36
|
-
</div>
|
37
|
-
</div>
|
38
|
-
<div class="row">
|
39
|
-
<div class="large-4 medium-4 medium-push-2 columns">
|
40
|
-
<p><a href="http://github.com/zurb/foundation">Foundation on Github</a><br />Latest code, issue reports, feature requests and more.</p>
|
41
|
-
</div>
|
42
|
-
<div class="large-4 medium-4 medium-pull-2 columns">
|
43
|
-
<p><a href="https://twitter.com/ZURBfoundation">@zurbfoundation</a><br />Ping us on Twitter if you have questions. When you build something with this we'd love to see it (and send you a totally boss sticker).</p>
|
44
|
-
</div>
|
45
|
-
</div>
|
46
|
-
</div>
|
47
|
-
</div>
|
48
|
-
</div>
|
49
|
-
|
50
|
-
<div class="row">
|
51
|
-
<div class="large-8 medium-8 columns">
|
52
|
-
<h5>Here’s your basic grid:</h5>
|
53
|
-
<!-- Grid Example -->
|
54
|
-
|
55
|
-
<div class="row">
|
56
|
-
<div class="large-12 columns">
|
57
|
-
<div class="primary callout">
|
58
|
-
<p><strong>This is a twelve column section in a row.</strong> Each of these includes a div.callout element so you can see where the columns are - it's not required at all for the grid.</p>
|
59
|
-
</div>
|
60
|
-
</div>
|
61
|
-
</div>
|
62
|
-
<div class="row">
|
63
|
-
<div class="large-6 medium-6 columns">
|
64
|
-
<div class="primary callout">
|
65
|
-
<p>Six columns</p>
|
66
|
-
</div>
|
67
|
-
</div>
|
68
|
-
<div class="large-6 medium-6 columns">
|
69
|
-
<div class="primary callout">
|
70
|
-
<p>Six columns</p>
|
71
|
-
</div>
|
72
|
-
</div>
|
73
|
-
</div>
|
74
|
-
<div class="row">
|
75
|
-
<div class="large-4 medium-4 small-4 columns">
|
76
|
-
<div class="primary callout">
|
77
|
-
<p>Four columns</p>
|
78
|
-
</div>
|
79
|
-
</div>
|
80
|
-
<div class="large-4 medium-4 small-4 columns">
|
81
|
-
<div class="primary callout">
|
82
|
-
<p>Four columns</p>
|
83
|
-
</div>
|
84
|
-
</div>
|
85
|
-
<div class="large-4 medium-4 small-4 columns">
|
86
|
-
<div class="primary callout">
|
87
|
-
<p>Four columns</p>
|
88
|
-
</div>
|
89
|
-
</div>
|
90
|
-
</div>
|
91
|
-
|
92
|
-
<hr />
|
93
|
-
|
94
|
-
<h5>We bet you’ll need a form somewhere:</h5>
|
95
|
-
<form>
|
96
|
-
<div class="row">
|
97
|
-
<div class="large-12 columns">
|
98
|
-
<label>Input Label</label>
|
99
|
-
<input type="text" placeholder="large-12.columns" />
|
100
|
-
</div>
|
101
|
-
</div>
|
102
|
-
<div class="row">
|
103
|
-
<div class="large-4 medium-4 columns">
|
104
|
-
<label>Input Label</label>
|
105
|
-
<input type="text" placeholder="large-4.columns" />
|
106
|
-
</div>
|
107
|
-
<div class="large-4 medium-4 columns">
|
108
|
-
<label>Input Label</label>
|
109
|
-
<input type="text" placeholder="large-4.columns" />
|
110
|
-
</div>
|
111
|
-
<div class="large-4 medium-4 columns">
|
112
|
-
<div class="row collapse">
|
113
|
-
<label>Input Label</label>
|
114
|
-
<div class="input-group">
|
115
|
-
<input type="text" placeholder="small-9.columns" class="input-group-field" />
|
116
|
-
<span class="input-group-label">.com</span>
|
117
|
-
</div>
|
118
|
-
</div>
|
119
|
-
</div>
|
120
|
-
</div>
|
121
|
-
<div class="row">
|
122
|
-
<div class="large-12 columns">
|
123
|
-
<label>Select Box</label>
|
124
|
-
<select>
|
125
|
-
<option value="husker">Husker</option>
|
126
|
-
<option value="starbuck">Starbuck</option>
|
127
|
-
<option value="hotdog">Hot Dog</option>
|
128
|
-
<option value="apollo">Apollo</option>
|
129
|
-
</select>
|
130
|
-
</div>
|
131
|
-
</div>
|
132
|
-
<div class="row">
|
133
|
-
<div class="large-6 medium-6 columns">
|
134
|
-
<label>Choose Your Favorite</label>
|
135
|
-
<input type="radio" name="pokemon" value="Red" id="pokemonRed"><label for="pokemonRed">Radio 1</label>
|
136
|
-
<input type="radio" name="pokemon" value="Blue" id="pokemonBlue"><label for="pokemonBlue">Radio 2</label>
|
137
|
-
</div>
|
138
|
-
<div class="large-6 medium-6 columns">
|
139
|
-
<label>Check these out</label>
|
140
|
-
<input id="checkbox1" type="checkbox"><label for="checkbox1">Checkbox 1</label>
|
141
|
-
<input id="checkbox2" type="checkbox"><label for="checkbox2">Checkbox 2</label>
|
142
|
-
</div>
|
143
|
-
</div>
|
144
|
-
<div class="row">
|
145
|
-
<div class="large-12 columns">
|
146
|
-
<label>Textarea Label</label>
|
147
|
-
<textarea placeholder="small-12.columns"></textarea>
|
148
|
-
</div>
|
149
|
-
</div>
|
150
|
-
</form>
|
151
|
-
</div>
|
152
|
-
|
153
|
-
<div class="large-4 medium-4 columns">
|
154
|
-
<h5>Try one of these buttons:</h5>
|
155
|
-
<p><a href="#" class="button">Simple Button</a><br/>
|
156
|
-
<a href="#" class="success button">Success Btn</a><br/>
|
157
|
-
<a href="#" class="alert button">Alert Btn</a><br/>
|
158
|
-
<a href="#" class="secondary button">Secondary Btn</a></p>
|
159
|
-
<div class="callout">
|
160
|
-
<h5>So many components, girl!</h5>
|
161
|
-
<p>A whole kitchen sink of goodies comes with Foundation. Check out the docs to see them all, along with details on making them your own.</p>
|
162
|
-
<a href="http://foundation.zurb.com/sites/docs/" class="small button">Go to Foundation Docs</a>
|
163
|
-
</div>
|
164
|
-
</div>
|
165
|
-
</div>
|
166
|
-
|
167
|
-
<script src="https://code.jquery.com/jquery-2.2.3.min.js" integrity="sha256-a23g1Nt4dtEYOj7bR+vTu7+T8VP13humZFBJNIYoEJo=" crossorigin="anonymous"></script>
|
168
|
-
{{'vendor/what-input.min.js' | javascript_tag }}
|
169
|
-
{{ 'vendor/foundation.min.js' | javascript_tag }}
|
170
|
-
{{'app.js' | javascript_tag }}
|
171
|
-
</body>
|
172
|
-
</html>
|
@@ -1,144 +0,0 @@
|
|
1
|
-
---
|
2
|
-
title: Home page
|
3
|
-
published: true
|
4
|
-
---
|
5
|
-
!!!
|
6
|
-
%html.no-js{:lang => "en"}
|
7
|
-
%head
|
8
|
-
%meta{:charset => "utf-8"}
|
9
|
-
%meta{:content => "ie=edge", "http-equiv" => "x-ua-compatible"}
|
10
|
-
%meta{:content => "width=device-width, initial-scale=1.0", :name => "viewport"}
|
11
|
-
%title Foundation for Sites
|
12
|
-
{{ 'app.css' | stylesheet_tag }}
|
13
|
-
%body
|
14
|
-
.row
|
15
|
-
.large-12.columns
|
16
|
-
%h1 Welcome to Foundation
|
17
|
-
.row
|
18
|
-
.large-12.columns
|
19
|
-
.callout
|
20
|
-
%h3 We’re stoked you want to try Foundation!
|
21
|
-
%p To get going, this file (index.html) includes some basic styles you can modify, play around with, or totally destroy to get going.
|
22
|
-
%p Once you've exhausted the fun in this document, you should check out:
|
23
|
-
.row
|
24
|
-
.large-4.medium-4.columns
|
25
|
-
%p
|
26
|
-
%a{:href => "http://foundation.zurb.com/docs"} Foundation Documentation
|
27
|
-
= succeed "Everything" do
|
28
|
-
%br/
|
29
|
-
you need to know about using the framework.
|
30
|
-
.large-4.medium-4.columns
|
31
|
-
%p
|
32
|
-
%a{:href => "http://zurb.com/university/code-skills"} Foundation Code Skills
|
33
|
-
= succeed "These" do
|
34
|
-
%br/
|
35
|
-
online courses offer you a chance to better understand how Foundation works and how you can master it to create awesome projects.
|
36
|
-
.large-4.medium-4.columns
|
37
|
-
%p
|
38
|
-
%a{:href => "http://foundation.zurb.com/forum"} Foundation Forum
|
39
|
-
= succeed "Join" do
|
40
|
-
%br/
|
41
|
-
the Foundation community to ask a question or show off your knowlege.
|
42
|
-
.row
|
43
|
-
.large-4.medium-4.medium-push-2.columns
|
44
|
-
%p
|
45
|
-
%a{:href => "http://github.com/zurb/foundation"} Foundation on Github
|
46
|
-
= succeed "Latest" do
|
47
|
-
%br/
|
48
|
-
code, issue reports, feature requests and more.
|
49
|
-
.large-4.medium-4.medium-pull-2.columns
|
50
|
-
%p
|
51
|
-
%a{:href => "https://twitter.com/ZURBfoundation"} @zurbfoundation
|
52
|
-
= succeed "Ping" do
|
53
|
-
%br/
|
54
|
-
us on Twitter if you have questions. When you build something with this we'd love to see it (and send you a totally boss sticker).
|
55
|
-
.row
|
56
|
-
.large-8.medium-8.columns
|
57
|
-
%h5 Here’s your basic grid:
|
58
|
-
/ Grid Example
|
59
|
-
.row
|
60
|
-
.large-12.columns
|
61
|
-
.primary.callout
|
62
|
-
%p
|
63
|
-
%strong This is a twelve column section in a row.
|
64
|
-
Each of these includes a div.callout element so you can see where the columns are - it's not required at all for the grid.
|
65
|
-
.row
|
66
|
-
.large-6.medium-6.columns
|
67
|
-
.primary.callout
|
68
|
-
%p Six columns
|
69
|
-
.large-6.medium-6.columns
|
70
|
-
.primary.callout
|
71
|
-
%p Six columns
|
72
|
-
.row
|
73
|
-
.large-4.medium-4.small-4.columns
|
74
|
-
.primary.callout
|
75
|
-
%p Four columns
|
76
|
-
.large-4.medium-4.small-4.columns
|
77
|
-
.primary.callout
|
78
|
-
%p Four columns
|
79
|
-
.large-4.medium-4.small-4.columns
|
80
|
-
.primary.callout
|
81
|
-
%p Four columns
|
82
|
-
%hr/
|
83
|
-
%h5 We bet you’ll need a form somewhere:
|
84
|
-
%form
|
85
|
-
.row
|
86
|
-
.large-12.columns
|
87
|
-
%label Input Label
|
88
|
-
%input{:placeholder => "large-12.columns", :type => "text"}/
|
89
|
-
.row
|
90
|
-
.large-4.medium-4.columns
|
91
|
-
%label Input Label
|
92
|
-
%input{:placeholder => "large-4.columns", :type => "text"}/
|
93
|
-
.large-4.medium-4.columns
|
94
|
-
%label Input Label
|
95
|
-
%input{:placeholder => "large-4.columns", :type => "text"}/
|
96
|
-
.large-4.medium-4.columns
|
97
|
-
.row.collapse
|
98
|
-
%label Input Label
|
99
|
-
.input-group
|
100
|
-
%input.input-group-field{:placeholder => "small-9.columns", :type => "text"}/
|
101
|
-
%span.input-group-label .com
|
102
|
-
.row
|
103
|
-
.large-12.columns
|
104
|
-
%label Select Box
|
105
|
-
%select
|
106
|
-
%option{:value => "husker"} Husker
|
107
|
-
%option{:value => "starbuck"} Starbuck
|
108
|
-
%option{:value => "hotdog"} Hot Dog
|
109
|
-
%option{:value => "apollo"} Apollo
|
110
|
-
.row
|
111
|
-
.large-6.medium-6.columns
|
112
|
-
%label Choose Your Favorite
|
113
|
-
%input#pokemonRed{:name => "pokemon", :type => "radio", :value => "Red"}
|
114
|
-
%label{:for => "pokemonRed"} Radio 1
|
115
|
-
%input#pokemonBlue{:name => "pokemon", :type => "radio", :value => "Blue"}
|
116
|
-
%label{:for => "pokemonBlue"} Radio 2
|
117
|
-
.large-6.medium-6.columns
|
118
|
-
%label Check these out
|
119
|
-
%input#checkbox1{:type => "checkbox"}
|
120
|
-
%label{:for => "checkbox1"} Checkbox 1
|
121
|
-
%input#checkbox2{:type => "checkbox"}
|
122
|
-
%label{:for => "checkbox2"} Checkbox 2
|
123
|
-
.row
|
124
|
-
.large-12.columns
|
125
|
-
%label Textarea Label
|
126
|
-
%textarea{:placeholder => "small-12.columns"}
|
127
|
-
.large-4.medium-4.columns
|
128
|
-
%h5 Try one of these buttons:
|
129
|
-
%p
|
130
|
-
%a.button{:href => "#"} Simple Button
|
131
|
-
%br/
|
132
|
-
%a.success.button{:href => "#"} Success Btn
|
133
|
-
%br/
|
134
|
-
%a.alert.button{:href => "#"} Alert Btn
|
135
|
-
%br/
|
136
|
-
%a.secondary.button{:href => "#"} Secondary Btn
|
137
|
-
.callout
|
138
|
-
%h5 So many components, girl!
|
139
|
-
%p A whole kitchen sink of goodies comes with Foundation. Check out the docs to see them all, along with details on making them your own.
|
140
|
-
%a.small.button{:href => "http://foundation.zurb.com/sites/docs/"} Go to Foundation Docs
|
141
|
-
%script{:crossorigin => "anonymous", :integrity => "sha256-a23g1Nt4dtEYOj7bR+vTu7+T8VP13humZFBJNIYoEJo=", :src => "https://code.jquery.com/jquery-2.2.3.min.js"}
|
142
|
-
{{'vendor/what-input.min.js' | javascript_tag }}
|
143
|
-
{{ 'vendor/foundation.min.js' | javascript_tag }}
|
144
|
-
{{'app.js' | javascript_tag }}
|
File without changes
|
@@ -1,16 +0,0 @@
|
|
1
|
-
# development:
|
2
|
-
# host: dev.example.com
|
3
|
-
# email: john@doe.net
|
4
|
-
# password: apassword
|
5
|
-
# # api_key: <your api key here>
|
6
|
-
# staging:
|
7
|
-
# host: staging.example.com
|
8
|
-
# email: john@doe.net
|
9
|
-
# password: apassword
|
10
|
-
# # api_key: <your api key here>
|
11
|
-
# production:
|
12
|
-
# host: www.example.com
|
13
|
-
# email: john@doe.net
|
14
|
-
# password: apassword
|
15
|
-
# # api_key: <your api key here>
|
16
|
-
# # ssl: true
|
@@ -1,56 +0,0 @@
|
|
1
|
-
# Site metafield schema
|
2
|
-
#
|
3
|
-
# Syntax:
|
4
|
-
#
|
5
|
-
# <namespace_1>: # no empty spaces, only digits and underscores
|
6
|
-
# label: <my label> # used as the label of a tab in the back-office
|
7
|
-
# # label: # if you want to provide the label in another language (back-office)
|
8
|
-
# # en: <your label in English if the local of the current user is English>
|
9
|
-
# # fr: <your label in French>
|
10
|
-
# position: <0..n> # position of the tab in the menu
|
11
|
-
# fields:
|
12
|
-
# <name_1>:
|
13
|
-
# label: <my label> # used as the label of the HTML input. Use a hash if you want it in another languages.
|
14
|
-
# hint: <my hint> # used as the hint of the HTML input. Use a hash if you want it in another languages.
|
15
|
-
# type: <string|text|integer|float|image|boolean|select|color>
|
16
|
-
# localized: <true|false> # if the value is scoped by the current locale when rendering the site.
|
17
|
-
# position: <0..n> # position of the input in the form
|
18
|
-
# select_options: [array]
|
19
|
-
# # select_options:
|
20
|
-
# # <option_value_1>: <label> # use a hash instead if you want it in another languages.
|
21
|
-
# # <option_value_2>: <label> # use a hash instead if you want it in another languages.
|
22
|
-
# # <name_2>:
|
23
|
-
# # ...
|
24
|
-
#
|
25
|
-
# <namespace_2>:
|
26
|
-
# # ...
|
27
|
-
#
|
28
|
-
#
|
29
|
-
# Simple example:
|
30
|
-
#
|
31
|
-
# shop:
|
32
|
-
# label: My shop location
|
33
|
-
# fields:
|
34
|
-
# address:
|
35
|
-
# type: string
|
36
|
-
# hint: "Ex: 7 allee Albert Camus"
|
37
|
-
# city:
|
38
|
-
# type: string
|
39
|
-
# hint: "Chicago, Paris, Blagnac, Toulouse"
|
40
|
-
# zip_code:
|
41
|
-
# type: string
|
42
|
-
# hint: "Digits only"
|
43
|
-
# hours:
|
44
|
-
# type: text
|
45
|
-
# hint: "Free text here"
|
46
|
-
# theme:
|
47
|
-
# fields:
|
48
|
-
# background_image:
|
49
|
-
# type: image
|
50
|
-
# hint: full screen image (min: 3000px x 3000px)
|
51
|
-
# link_color:
|
52
|
-
# type: color
|
53
|
-
# font:
|
54
|
-
# type: select
|
55
|
-
# select_options: ['helvetica', 'Noto']
|
56
|
-
|