pwb 1.2.0 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (442) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +40 -25
  3. data/app/assets/fonts/fonts/FontAwesome.otf +0 -0
  4. data/app/assets/fonts/fonts/fontawesome-webfont.eot +0 -0
  5. data/app/assets/fonts/fonts/fontawesome-webfont.svg +2668 -637
  6. data/app/assets/fonts/fonts/fontawesome-webfont.ttf +0 -0
  7. data/app/assets/fonts/fonts/fontawesome-webfont.woff +0 -0
  8. data/app/assets/fonts/fonts/fontawesome-webfont.woff2 +0 -0
  9. data/app/assets/javascripts/pwb/shared/page-content.js +24 -0
  10. data/app/assets/javascripts/pwb/shared/squares-container.js +58 -0
  11. data/app/assets/javascripts/pwb/shared/vue-main.js +1 -1
  12. data/app/assets/javascripts/pwb/shared/vue-squares.js.erb +74 -0
  13. data/app/assets/javascripts/pwb/squares/tabable-section.js +47 -0
  14. data/app/assets/javascripts/pwb/themes/squares.js.erb +45 -0
  15. data/app/assets/javascripts/pwb/themes/vic.js.erb +152 -0
  16. data/app/assets/javascripts/pwb_admin_panel/application_legacy_1.js +5 -0
  17. data/app/assets/stylesheets/pwb/themes/berlin.scss +4 -0
  18. data/app/assets/stylesheets/pwb/themes/berlin/main.scss +1 -1
  19. data/app/assets/stylesheets/pwb/themes/default.scss +1 -0
  20. data/app/assets/stylesheets/pwb/themes/default/carousel.scss +2 -1
  21. data/app/assets/stylesheets/pwb/themes/default/landing_content_areas.scss +13 -13
  22. data/app/assets/stylesheets/pwb/themes/default/shame.scss +0 -16
  23. data/app/assets/stylesheets/pwb/themes/matt.scss +18 -0
  24. data/app/assets/stylesheets/pwb/themes/shared/liquid_templates.scss +37 -0
  25. data/app/assets/stylesheets/pwb/themes/shared/shame.scss +7 -0
  26. data/app/assets/stylesheets/pwb/themes/squares.scss +22 -0
  27. data/app/assets/stylesheets/pwb/themes/squares/vue-material-docs.scss +200 -0
  28. data/app/assets/stylesheets/pwb/themes/squares/vue-material-vars.scss +141 -0
  29. data/app/assets/stylesheets/pwb/themes/vic.scss +104 -0
  30. data/app/assets/stylesheets/pwb/themes/vic/general.scss +15 -0
  31. data/app/assets/stylesheets/pwb/themes/vic/landing.scss +189 -0
  32. data/app/assets/stylesheets/pwb/themes/vic/slider.scss +127 -0
  33. data/app/assets/stylesheets/pwb_admin_panel/application_legacy_1.scss +6 -0
  34. data/app/controllers/pwb/admin_panel_controller.rb +7 -1
  35. data/app/controllers/pwb/api/v1/clients_controller.rb +35 -0
  36. data/app/controllers/pwb/api/v1/contacts_controller.rb +41 -0
  37. data/app/controllers/pwb/api/v1/links_controller.rb +47 -0
  38. data/app/controllers/pwb/api/v1/page_controller.rb +117 -0
  39. data/app/controllers/pwb/api/v1/page_fragments_controller.rb +74 -0
  40. data/app/controllers/pwb/api/v1/properties_controller.rb +30 -9
  41. data/app/controllers/pwb/api/v1/sections_controller.rb +27 -26
  42. data/app/controllers/pwb/api/v1/website_controller.rb +11 -11
  43. data/app/controllers/pwb/application_controller.rb +22 -11
  44. data/app/controllers/pwb/{sections_controller.rb → contact_us_controller.rb} +24 -45
  45. data/app/controllers/pwb/css_controller.rb +5 -2
  46. data/app/controllers/pwb/pages_controller.rb +36 -0
  47. data/app/controllers/pwb/search_controller.rb +33 -11
  48. data/app/controllers/pwb/squares_controller.rb +48 -0
  49. data/app/controllers/pwb/welcome_controller.rb +30 -5
  50. data/app/helpers/pwb/application_helper.rb +50 -49
  51. data/app/helpers/pwb/css_helper.rb +14 -0
  52. data/app/helpers/pwb/navigation_helper.rb +82 -0
  53. data/app/models/pwb/contact.rb +25 -0
  54. data/app/models/pwb/content.rb +26 -8
  55. data/app/models/pwb/content_photo.rb +18 -0
  56. data/app/models/pwb/link.rb +41 -0
  57. data/app/models/pwb/message.rb +1 -1
  58. data/app/models/pwb/page.rb +227 -0
  59. data/app/models/pwb/page_content.rb +33 -0
  60. data/app/models/pwb/page_part.rb +17 -0
  61. data/app/models/pwb/preset_style.rb +37 -0
  62. data/app/models/pwb/prop.rb +4 -0
  63. data/app/models/pwb/website.rb +64 -9
  64. data/app/resources/pwb/api/v1/{section_resource.rb → client_resource.rb} +3 -4
  65. data/app/resources/pwb/api/v1/property_resource.rb +23 -4
  66. data/app/resources/pwb/api/v1/web_content_resource.rb +1 -1
  67. data/app/resources/pwb/api_public/v1/prop_resource.rb +9 -2
  68. data/{db/cms_fixtures/cms/layouts/about-us/content.html → app/themes/airbnb/views/layouts/pwb/_generic_modal.html.erb} +0 -0
  69. data/{db/cms_fixtures/cms/layouts/about-us/javascript.js → app/themes/airbnb/views/layouts/pwb/_login_modal.html.erb} +0 -0
  70. data/app/themes/airbnb/views/layouts/pwb/application.html.erb +82 -0
  71. data/app/themes/airbnb/views/pwb/_footer.html.erb +25 -0
  72. data/app/themes/airbnb/views/pwb/props/_images_section_carousel.html.erb +43 -0
  73. data/app/themes/airbnb/views/pwb/props/show.html.erb +69 -0
  74. data/app/themes/airbnb/views/pwb/search/_search_form_for_rent.html.erb +183 -0
  75. data/app/themes/airbnb/views/pwb/search/_search_results.html.erb +34 -0
  76. data/app/themes/airbnb/views/pwb/search/buy.html.erb +65 -0
  77. data/app/themes/airbnb/views/pwb/search/rent.html.erb +87 -0
  78. data/app/themes/airbnb/views/pwb/sections/_contact_us_form.html.erb +49 -0
  79. data/app/themes/airbnb/views/pwb/sections/contact_us.html.erb +56 -0
  80. data/app/themes/airbnb/views/pwb/welcome/_content_area_cols.html.erb +12 -0
  81. data/app/themes/airbnb/views/pwb/welcome/_single_property_row.html.erb +51 -0
  82. data/app/themes/airbnb/views/pwb/welcome/index.html.erb +66 -0
  83. data/app/themes/berlin/views/pwb/_footer.html.erb +15 -20
  84. data/app/themes/berlin/views/pwb/_header.html.erb +7 -9
  85. data/app/themes/berlin/views/pwb/pages/show.html.erb +50 -0
  86. data/app/themes/berlin/views/pwb/search/buy.html.erb +1 -1
  87. data/app/themes/berlin/views/pwb/search/rent.html.erb +1 -2
  88. data/app/themes/berlin/views/pwb/sections/contact_us.html.erb +1 -1
  89. data/app/themes/berlin/views/pwb/welcome/index.html.erb +51 -7
  90. data/app/themes/config.json +14 -0
  91. data/app/themes/default/views/pwb/{sections/cms.html.erb → pages/show.html.erb} +9 -8
  92. data/app/themes/default/views/pwb/search/buy.html.erb +1 -1
  93. data/app/themes/default/views/pwb/search/rent.html.erb +1 -1
  94. data/app/themes/default/views/pwb/sections/about_us.html.erb +8 -7
  95. data/app/themes/default/views/pwb/sections/contact_us.html.erb +40 -30
  96. data/app/themes/default/views/pwb/sections/static.html.erb +3 -20
  97. data/app/themes/default/views/pwb/welcome/_single_property_row.html.erb +1 -1
  98. data/app/themes/default/views/pwb/welcome/index.html.erb +7 -38
  99. data/app/themes/matt/views/layouts/pwb/application.html.erb +45 -0
  100. data/app/themes/matt/views/pwb/_footer.html.erb +60 -0
  101. data/app/themes/matt/views/pwb/_header.html.erb +105 -0
  102. data/app/themes/matt/views/pwb/search/buy.html.erb +65 -0
  103. data/app/themes/matt/views/pwb/welcome/index.html.erb +132 -0
  104. data/app/themes/vic/views/layouts/pwb/application.html.erb +94 -0
  105. data/app/themes/vic/views/pwb/_header.html.erb +100 -0
  106. data/app/themes/vic/views/pwb/props/_images_section_carousel.html.erb +43 -0
  107. data/app/themes/vic/views/pwb/props/show.html.erb +69 -0
  108. data/app/themes/vic/views/pwb/search/buy.html.erb +65 -0
  109. data/app/themes/vic/views/pwb/search/rent.html.erb +65 -0
  110. data/app/themes/vic/views/pwb/sections/_contact_us_form.html.erb +49 -0
  111. data/app/themes/vic/views/pwb/sections/contact_us.html.erb +56 -0
  112. data/app/themes/vic/views/pwb/welcome/_content_area_cols.html.erb +12 -0
  113. data/app/themes/vic/views/pwb/welcome/_single_property_row.html.erb +51 -0
  114. data/app/themes/vic/views/pwb/welcome/index.html.erb +27 -0
  115. data/app/views/devise/shared/_links.html.erb +1 -1
  116. data/app/views/layouts/pwb/admin_panel_error.html.erb +19 -0
  117. data/app/views/layouts/pwb/admin_panel_legacy_1.html.erb +21 -0
  118. data/app/views/layouts/pwb/squares.html.erb +72 -0
  119. data/app/views/pwb/_footer.html.erb +2 -6
  120. data/app/views/pwb/_header.html.erb +23 -25
  121. data/app/views/pwb/admin_panel/show_legacy_1.html.erb +3 -0
  122. data/app/views/pwb/custom_css/_berlin.css.erb +0 -67
  123. data/app/views/pwb/custom_css/_default.css.erb +0 -22
  124. data/app/views/pwb/custom_css/_shared.css.erb +4 -3
  125. data/app/views/pwb/custom_css/_vic.css.erb +10 -0
  126. data/app/views/pwb/props/_images_section_carousel.html.erb +1 -1
  127. data/app/views/pwb/search/_search_result_item.html.erb +1 -1
  128. data/app/views/pwb/squares/show_client.html.erb +26 -0
  129. data/app/views/pwb/squares/show_prop.html.erb +26 -0
  130. data/app/views/pwb/squares/vue.html.erb +1 -0
  131. data/config/client_setups/default.json +28 -27
  132. data/config/initializers/i18n_globalise.rb +4 -0
  133. data/config/locales/admin.en.yml +38 -7
  134. data/config/locales/admin.es.yml +60 -6
  135. data/config/locales/admin.pt.yml +474 -0
  136. data/config/locales/admin.ru.yml +49 -6
  137. data/config/locales/devise.it.yml +137 -0
  138. data/config/locales/en.yml +7 -7
  139. data/config/locales/it.yml +160 -0
  140. data/config/locales/pt.yml +2 -0
  141. data/config/locales/rails.it.yml +213 -0
  142. data/config/locales/tr.yml +36 -36
  143. data/config/locales/vi.yml +5 -5
  144. data/config/preset_styles/green_amber.json +23 -0
  145. data/config/preset_styles/purple_teal.json +23 -0
  146. data/config/preset_styles/red_light.json +18 -0
  147. data/config/routes.rb +35 -23
  148. data/db/example_images/carousel_villa_with_pool.jpg +0 -0
  149. data/db/example_images/flat_luxury_dining_area.jpg +0 -0
  150. data/db/example_images/flat_luxury_living_area.jpg +0 -0
  151. data/db/migrate/20161120103546_create_pwb_props.rb +3 -3
  152. data/db/migrate/20161122174847_create_pwb_sections.rb +9 -8
  153. data/db/migrate/20161128221919_create_pwb_clients.rb +1 -0
  154. data/db/migrate/20170315195413_add_extra_cols_to_pwb_sections.rb +7 -6
  155. data/db/migrate/20170716075456_create_pwb_pages.rb +23 -0
  156. data/db/migrate/20170716110121_translate_pages.rb +17 -0
  157. data/db/migrate/20170720183443_create_pwb_links.rb +29 -0
  158. data/db/migrate/20170720201601_translate_links.rb +13 -0
  159. data/db/migrate/20170915094326_create_pwb_page_contents.rb +17 -0
  160. data/db/migrate/20170917215533_add_page_part_key_to_pwb_contents.rb +7 -0
  161. data/db/migrate/20170919134945_add_block_key_to_pwb_content_photos.rb +5 -0
  162. data/db/migrate/20170923195321_create_pwb_contacts.rb +33 -0
  163. data/db/migrate/20171011212930_create_pwb_page_parts.rb +30 -0
  164. data/db/seeds/translations_es.rb +1 -87
  165. data/db/seeds/translations_it.rb +92 -0
  166. data/db/yml_seeds/agency_address.yml +8 -8
  167. data/db/yml_seeds/contacts.yml +13 -0
  168. data/db/yml_seeds/content_translations/en.yml +73 -0
  169. data/db/yml_seeds/content_translations/es.yml +74 -0
  170. data/db/yml_seeds/content_translations/it.yml +73 -0
  171. data/db/yml_seeds/content_translations/pt.yml +73 -0
  172. data/db/yml_seeds/{content/footer.yml → footer.yml} +0 -0
  173. data/db/yml_seeds/links.yml +389 -0
  174. data/db/yml_seeds/page_parts/ABOUT_PAGE_PARTS.md +5 -0
  175. data/db/yml_seeds/page_parts/about-us__content_html.yml +24 -0
  176. data/db/yml_seeds/page_parts/about-us__our_agency.yml +51 -0
  177. data/db/yml_seeds/page_parts/contact-us__content_html.yml +24 -0
  178. data/db/yml_seeds/page_parts/contact-us__form_and_map.yml +17 -0
  179. data/db/yml_seeds/page_parts/home__about_us_services.yml +85 -0
  180. data/db/yml_seeds/page_parts/home__content_html.yml +24 -0
  181. data/db/yml_seeds/page_parts/home__landing_hero.yml +51 -0
  182. data/db/yml_seeds/page_parts/legal__content_html.yml +24 -0
  183. data/db/yml_seeds/page_parts/privacy__content_html.yml +24 -0
  184. data/db/yml_seeds/page_parts/sell__content_html.yml +24 -0
  185. data/db/yml_seeds/pages/about.yml +11 -0
  186. data/db/yml_seeds/pages/buy.yml +23 -0
  187. data/db/yml_seeds/pages/contact.yml +12 -0
  188. data/db/yml_seeds/pages/home.yml +15 -0
  189. data/db/yml_seeds/pages/legal_notice.yml +11 -0
  190. data/db/yml_seeds/pages/privacy_policy.yml +11 -0
  191. data/db/yml_seeds/pages/rent.yml +15 -0
  192. data/db/yml_seeds/pages/sell.yml +13 -0
  193. data/db/yml_seeds/prop/flat_for_rent.yml +11 -11
  194. data/db/yml_seeds/prop/flat_for_rent_2.yml +57 -0
  195. data/db/yml_seeds/prop/flat_for_sale.yml +11 -12
  196. data/db/yml_seeds/prop/flat_for_sale_2.yml +56 -0
  197. data/db/yml_seeds/prop/villa_for_rent.yml +14 -14
  198. data/db/yml_seeds/prop/villa_for_sale.yml +15 -15
  199. data/db/yml_seeds/prop_spain/flat_for_rent.yml +58 -0
  200. data/db/yml_seeds/prop_spain/flat_for_sale.yml +58 -0
  201. data/db/yml_seeds/prop_spain/villa_for_rent.yml +58 -0
  202. data/db/yml_seeds/prop_spain/villa_for_sale.yml +59 -0
  203. data/db/yml_seeds/sections.yml +119 -119
  204. data/db/yml_seeds/{content → to_delete}/about_us.yml +0 -0
  205. data/db/yml_seeds/{content → to_delete}/carousel.yml +0 -0
  206. data/db/yml_seeds/{content → to_delete}/content_columns.yml +0 -0
  207. data/db/yml_seeds/to_delete/footer.yml +15 -0
  208. data/db/yml_seeds/{content → to_delete}/sell.yml +0 -0
  209. data/db/yml_seeds/{content → to_delete}/static.yml +0 -0
  210. data/db/yml_seeds/website.yml +2 -1
  211. data/lib/pwb/engine.rb +16 -2
  212. data/lib/pwb/pages_seeder.rb +190 -0
  213. data/lib/pwb/seeder.rb +56 -14
  214. data/lib/pwb/version.rb +1 -1
  215. data/lib/tasks/pwb_tasks.rake +19 -2
  216. data/spec/controllers/pwb/api/v1/propeties_controller_spec.rb +2 -2
  217. data/spec/controllers/pwb/welcome_controller_spec.rb +18 -5
  218. data/spec/dummy/config/initializers/assets.rb +9 -0
  219. data/spec/dummy/config/routes.rb +2 -0
  220. data/spec/dummy/config/secrets.yml +3 -0
  221. data/spec/dummy/db/migrate/20171201161323_create_property_web_scraper_import_hosts.property_web_scraper.rb +22 -0
  222. data/spec/dummy/db/migrate/20171201161324_create_property_web_scraper_listings.property_web_scraper.rb +84 -0
  223. data/spec/dummy/db/schema.rb +475 -398
  224. data/spec/factories/pwb_contacts.rb +5 -0
  225. data/spec/factories/pwb_contents.rb +3 -0
  226. data/spec/factories/pwb_links.rb +5 -0
  227. data/spec/factories/pwb_page_contents.rb +5 -0
  228. data/spec/factories/pwb_page_parts.rb +8 -0
  229. data/spec/factories/pwb_pages.rb +29 -0
  230. data/spec/factories/pwb_prop_photos.rb +11 -2
  231. data/spec/fixtures/mls/properties_interealty.json +1 -496
  232. data/spec/fixtures/params/bulk_create.json +3 -3
  233. data/spec/libraries/pwb/pages_seeder_spec.rb +56 -0
  234. data/spec/libraries/pwb/seeder_spec.rb +14 -10
  235. data/spec/models/pwb/contact_spec.rb +7 -0
  236. data/spec/models/pwb/link_spec.rb +7 -0
  237. data/spec/models/pwb/page_content_spec.rb +7 -0
  238. data/spec/models/pwb/page_part_spec.rb +7 -0
  239. data/spec/models/pwb/page_spec.rb +28 -0
  240. data/spec/models/pwb/website_spec.rb +10 -0
  241. data/spec/rails_helper.rb +1 -1
  242. data/spec/requests/pwb/themes_spec.rb +15 -10
  243. data/spec/views/pwb/application_layout.html.erb_spec.rb +28 -21
  244. data/spec/views/pwb/contact_us.html.erb_spec.rb +11 -0
  245. data/spec/views/pwb/welcome.html.erb_spec.rb +13 -9
  246. metadata +230 -244
  247. data/app/controllers/pwb/api/v1/cms_pages_controller.rb +0 -102
  248. data/app/controllers/pwb/comfy_controller.rb +0 -106
  249. data/app/models/pwb/cms_page_container.rb +0 -9
  250. data/app/models/pwb/section.rb +0 -35
  251. data/app/models/pwb/welcome.rb +0 -4
  252. data/app/resources/pwb/api/v1/cms_block_resource.rb +0 -11
  253. data/app/resources/pwb/api/v1/cms_page_resource.rb +0 -27
  254. data/app/themes/berlin/views/pwb/sections/about_us.html.erb +0 -59
  255. data/app/themes/berlin/views/pwb/sections/cms.html.erb +0 -34
  256. data/app/themes/berlin/views/pwb/sections/static.html.erb +0 -58
  257. data/app/views/pwb/search/_search_result_item_to_del.html.erb +0 -56
  258. data/config/cms_page_containers/about-us.json +0 -18
  259. data/config/cms_page_containers/about.json +0 -107
  260. data/config/cms_page_containers/landing.json +0 -19
  261. data/config/cms_page_containers/legal.json +0 -17
  262. data/config/cms_page_containers/sell.json +0 -96
  263. data/config/initializers/comfortable_mexican_sofa.rb +0 -142
  264. data/config/initializers/i18n.rb +0 -1
  265. data/db/cms_fixtures/cms/categories/pages.yml +0 -3
  266. data/db/cms_fixtures/cms/files/_rerenting-landing_framed.png.yml +0 -6
  267. data/db/cms_fixtures/cms/files/rerenting-landing_framed.png +0 -0
  268. data/db/cms_fixtures/cms/layouts/about-us/attributes.yml +0 -4
  269. data/db/cms_fixtures/cms/layouts/about-us/people/attributes.yml +0 -4
  270. data/db/cms_fixtures/cms/layouts/about-us/people/content.html +0 -55
  271. data/db/cms_fixtures/cms/layouts/about-us/services/attributes.yml +0 -4
  272. data/db/cms_fixtures/cms/layouts/about-us/services/content.html +0 -32
  273. data/db/cms_fixtures/cms/layouts/about-us/services/javascript.js +0 -0
  274. data/db/cms_fixtures/cms/layouts/about-us/services/stylesheet.css +0 -0
  275. data/db/cms_fixtures/cms/layouts/about-us/stylesheet.css +0 -0
  276. data/db/cms_fixtures/cms/layouts/default-layout/attributes.yml +0 -4
  277. data/db/cms_fixtures/cms/layouts/default-layout/content.html +0 -51
  278. data/db/cms_fixtures/cms/layouts/default-layout/javascript.js +0 -0
  279. data/db/cms_fixtures/cms/layouts/default-layout/stylesheet.css +0 -0
  280. data/db/cms_fixtures/cms/pages/index/about-us/attributes.yml +0 -8
  281. data/db/cms_fixtures/cms/pages/index/about-us/people/attributes.yml +0 -8
  282. data/db/cms_fixtures/cms/pages/index/about-us/people/de/attributes.yml +0 -8
  283. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_details_a.html +0 -1
  284. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_details_b.html +0 -1
  285. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_details_c.html +0 -1
  286. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_details_d.html +0 -1
  287. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_img_url_a.html +0 -1
  288. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_img_url_b.html +0 -1
  289. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_img_url_c.html +0 -1
  290. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_img_url_d.html +0 -1
  291. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_name_a.html +0 -1
  292. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_name_b.html +0 -1
  293. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_name_c.html +0 -1
  294. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_name_d.html +0 -1
  295. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_title_a.html +0 -1
  296. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_title_b.html +0 -1
  297. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_title_c.html +0 -1
  298. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_title_d.html +0 -1
  299. data/db/cms_fixtures/cms/pages/index/about-us/people/en/attributes.yml +0 -8
  300. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_details_a.html +0 -1
  301. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_details_b.html +0 -1
  302. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_details_c.html +0 -1
  303. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_details_d.html +0 -1
  304. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_img_url_a.html +0 -1
  305. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_img_url_b.html +0 -1
  306. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_img_url_c.html +0 -1
  307. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_img_url_d.html +0 -1
  308. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_name_a.html +0 -1
  309. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_name_b.html +0 -1
  310. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_name_c.html +0 -1
  311. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_name_d.html +0 -1
  312. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_title_a.html +0 -1
  313. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_title_b.html +0 -1
  314. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_title_c.html +0 -1
  315. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_title_d.html +0 -1
  316. data/db/cms_fixtures/cms/pages/index/about-us/people/es/attributes.yml +0 -8
  317. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_details_a.html +0 -1
  318. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_details_b.html +0 -1
  319. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_details_c.html +0 -1
  320. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_details_d.html +0 -1
  321. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_img_url_a.html +0 -1
  322. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_img_url_b.html +0 -1
  323. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_img_url_c.html +0 -1
  324. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_img_url_d.html +0 -1
  325. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_name_a.html +0 -1
  326. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_name_b.html +0 -1
  327. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_name_c.html +0 -1
  328. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_name_d.html +0 -1
  329. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_title_a.html +0 -1
  330. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_title_b.html +0 -1
  331. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_title_c.html +0 -1
  332. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_title_d.html +0 -1
  333. data/db/cms_fixtures/cms/pages/index/about-us/people/pt/attributes.yml +0 -8
  334. data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_details_a.html +0 -1
  335. data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_details_b.html +0 -1
  336. data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_details_c.html +0 -1
  337. data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_details_d.html +0 -1
  338. data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_name_a.html +0 -1
  339. data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_name_b.html +0 -1
  340. data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_name_c.html +0 -1
  341. data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_name_d.html +0 -1
  342. data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_title_a.html +0 -1
  343. data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_title_b.html +0 -1
  344. data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_title_c.html +0 -1
  345. data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_title_d.html +0 -1
  346. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/attributes.yml +0 -8
  347. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_details_a.html +0 -1
  348. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_details_b.html +0 -1
  349. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_details_c.html +0 -1
  350. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_details_d.html +0 -1
  351. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_img_url_a.html +0 -1
  352. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_img_url_b.html +0 -1
  353. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_img_url_c.html +0 -1
  354. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_img_url_d.html +0 -1
  355. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_name_a.html +0 -1
  356. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_name_b.html +0 -1
  357. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_name_c.html +0 -1
  358. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_name_d.html +0 -1
  359. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_title_a.html +0 -1
  360. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_title_b.html +0 -1
  361. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_title_c.html +0 -1
  362. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_title_d.html +0 -1
  363. data/db/cms_fixtures/cms/pages/index/about-us/services/attributes.yml +0 -8
  364. data/db/cms_fixtures/cms/pages/index/about-us/services/content_a.html +0 -1
  365. data/db/cms_fixtures/cms/pages/index/about-us/services/content_b.html +0 -0
  366. data/db/cms_fixtures/cms/pages/index/about-us/services/content_c.html +0 -0
  367. data/db/cms_fixtures/cms/pages/index/about-us/services/de/attributes.yml +0 -8
  368. data/db/cms_fixtures/cms/pages/index/about-us/services/de/content_a.html +0 -1
  369. data/db/cms_fixtures/cms/pages/index/about-us/services/de/content_b.html +0 -1
  370. data/db/cms_fixtures/cms/pages/index/about-us/services/de/content_c.html +0 -1
  371. data/db/cms_fixtures/cms/pages/index/about-us/services/de/title_a.html +0 -1
  372. data/db/cms_fixtures/cms/pages/index/about-us/services/de/title_b.html +0 -1
  373. data/db/cms_fixtures/cms/pages/index/about-us/services/de/title_c.html +0 -1
  374. data/db/cms_fixtures/cms/pages/index/about-us/services/en/attributes.yml +0 -8
  375. data/db/cms_fixtures/cms/pages/index/about-us/services/en/content_a.html +0 -1
  376. data/db/cms_fixtures/cms/pages/index/about-us/services/en/content_b.html +0 -1
  377. data/db/cms_fixtures/cms/pages/index/about-us/services/en/content_c.html +0 -1
  378. data/db/cms_fixtures/cms/pages/index/about-us/services/en/title_a.html +0 -1
  379. data/db/cms_fixtures/cms/pages/index/about-us/services/en/title_b.html +0 -1
  380. data/db/cms_fixtures/cms/pages/index/about-us/services/en/title_c.html +0 -1
  381. data/db/cms_fixtures/cms/pages/index/about-us/services/es/attributes.yml +0 -8
  382. data/db/cms_fixtures/cms/pages/index/about-us/services/es/content_a.html +0 -1
  383. data/db/cms_fixtures/cms/pages/index/about-us/services/es/content_b.html +0 -1
  384. data/db/cms_fixtures/cms/pages/index/about-us/services/es/content_c.html +0 -1
  385. data/db/cms_fixtures/cms/pages/index/about-us/services/es/title_a.html +0 -1
  386. data/db/cms_fixtures/cms/pages/index/about-us/services/es/title_b.html +0 -1
  387. data/db/cms_fixtures/cms/pages/index/about-us/services/es/title_c.html +0 -1
  388. data/db/cms_fixtures/cms/pages/index/about-us/services/title_a.html +0 -1
  389. data/db/cms_fixtures/cms/pages/index/about-us/services/title_b.html +0 -0
  390. data/db/cms_fixtures/cms/pages/index/about-us/services/title_c.html +0 -0
  391. data/db/cms_fixtures/cms/pages/index/attributes.yml +0 -8
  392. data/db/cms_fixtures/cms/pages/index/content.html +0 -1
  393. data/db/cms_fixtures/cms/pages/index/title.html +0 -0
  394. data/db/cms_fixtures/cms/snippets/snippet1/attributes.yml +0 -3
  395. data/db/cms_fixtures/cms/snippets/snippet1/content.html +0 -1
  396. data/db/cms_fixtures/sample-site/categories/files.yml +0 -1
  397. data/db/cms_fixtures/sample-site/categories/pages.yml +0 -1
  398. data/db/cms_fixtures/sample-site/categories/snippets.yml +0 -1
  399. data/db/cms_fixtures/sample-site/files/_sample.jpg.yml +0 -5
  400. data/db/cms_fixtures/sample-site/files/sample.jpg +0 -0
  401. data/db/cms_fixtures/sample-site/layouts/default/attributes.yml +0 -1
  402. data/db/cms_fixtures/sample-site/layouts/default/content.html +0 -5
  403. data/db/cms_fixtures/sample-site/layouts/default/javascript.js +0 -1
  404. data/db/cms_fixtures/sample-site/layouts/default/nested/attributes.yml +0 -2
  405. data/db/cms_fixtures/sample-site/layouts/default/nested/content.haml +0 -3
  406. data/db/cms_fixtures/sample-site/layouts/default/nested/javascript.js +0 -1
  407. data/db/cms_fixtures/sample-site/layouts/default/nested/stylesheet.css +0 -1
  408. data/db/cms_fixtures/sample-site/layouts/default/stylesheet.css +0 -1
  409. data/db/cms_fixtures/sample-site/pages/index/attributes.yml +0 -6
  410. data/db/cms_fixtures/sample-site/pages/index/child/attributes.yml +0 -3
  411. data/db/cms_fixtures/sample-site/pages/index/child/left.haml +0 -1
  412. data/db/cms_fixtures/sample-site/pages/index/child/right.html +0 -1
  413. data/db/cms_fixtures/sample-site/pages/index/child/thumbnail.png +0 -0
  414. data/db/cms_fixtures/sample-site/pages/index/content.html +0 -2
  415. data/db/cms_fixtures/sample-site/snippets/default/attributes.yml +0 -4
  416. data/db/cms_fixtures/sample-site/snippets/default/content.html +0 -1
  417. data/db/migrate/20170315212222_translate_sections.rb +0 -15
  418. data/db/migrate/20170513221300_create_cms.rb +0 -133
  419. data/lib/pwb/cms_data_loader.rb +0 -38
  420. data/spec/dummy/log/development.log +0 -0
  421. data/spec/dummy/log/test.log +0 -0
  422. data/spec/dummy/public/uploads/pwb/content_photo/image/1/carousel_windows.jpg +0 -0
  423. data/spec/dummy/public/uploads/pwb/content_photo/image/2/carousel_deck_chair.jpg +0 -0
  424. data/spec/dummy/public/uploads/pwb/content_photo/image/3/carousel_grass.jpg +0 -0
  425. data/spec/dummy/public/uploads/pwb/content_photo/image/4/carousel_grass.jpg +0 -0
  426. data/spec/dummy/public/uploads/pwb/prop_photo/image/1/flat_balcony.jpg +0 -0
  427. data/spec/dummy/public/uploads/pwb/prop_photo/image/1/gdaje3atcct1gx2ngv9u.jpg +0 -0
  428. data/spec/dummy/public/uploads/pwb/prop_photo/image/1/new_villa.jpg +0 -0
  429. data/spec/dummy/public/uploads/pwb/prop_photo/image/2/flat_balcony.jpg +0 -0
  430. data/spec/dummy/public/uploads/pwb/prop_photo/image/2/kitchen_modern.jpg +0 -0
  431. data/spec/dummy/public/uploads/pwb/prop_photo/image/2/rxo23syongfydjpoizrd.jpg +0 -0
  432. data/spec/dummy/public/uploads/pwb/prop_photo/image/3/mansion_front.jpg +0 -0
  433. data/spec/dummy/public/uploads/pwb/prop_photo/image/3/vzlptgtccsk2d2ewp4id.jpg +0 -0
  434. data/spec/dummy/public/uploads/pwb/prop_photo/image/4/mansion_bedroom.jpg +0 -0
  435. data/spec/dummy/public/uploads/pwb/prop_photo/image/4/xwayprwnmmmhrzrgwvch.jpg +0 -0
  436. data/spec/dummy/public/uploads/pwb/prop_photo/image/5/flat_window.jpg +0 -0
  437. data/spec/dummy/public/uploads/pwb/prop_photo/image/5/ilxn2u37bak0v60u6f8q.jpg +0 -0
  438. data/spec/dummy/public/uploads/pwb/prop_photo/image/6/kitchen_classic.jpg +0 -0
  439. data/spec/dummy/public/uploads/pwb/prop_photo/image/7/flat_balcony.jpg +0 -0
  440. data/spec/dummy/public/uploads/pwb/prop_photo/image/8/lounge_cosy.jpg +0 -0
  441. data/spec/factories/pwb_sections.rb +0 -4
  442. data/spec/models/pwb/section_spec.rb +0 -11
@@ -0,0 +1,74 @@
1
+ ---
2
+ es:
3
+ legal:
4
+ content_html:
5
+ main_content:
6
+ <b> RENUNCIA </b></br>
7
+ El equipo de Example RE Internet se esfuerza por proporcionarle información útil, precisa y oportuna en este sitio web. En consecuencia, Example RE ha intentado proporcionar información y materiales precisos en este sitio web en este sitio web, pero no asume ninguna responsabilidad por la exactitud y la integridad de esa información y materiales en este sitio web, pero no asume ninguna responsabilidad por la exactitud y compatibilidad de esa información o materiales. Example RE puede cambiar el contenido de cualquier información o material disponible en esta webite, o en los productos descritos en ellos, en cualquier momento sin previo aviso. Sin embargo, Example RE no se compromete a actualizar la información o los materiales de este sitio web que, como resultado, pueden estar desactualizados. La información y opiniones expresadas en tablas de boletines u otros foros no son necesariamente las del Example RE. Ni Example RE, ni sus ejecutivos, directores, empleados, agentes, distribuidores o afiliados son responsables o responsables por cualquier daño por pérdida (incluyendo, pero no limitado a, real, consecuencial o punitivo), responsabilidad, reclamo u otra lesión o daño Causa relacionada o resultante de cualquier información publicada en el sitio web de Example RE. Example RE se reserva el derecho de revisar estos términos y / o restricciones legales en cualquier momento. Usted es responsable de revisar esta página de vez en cuando para asegurar el cumplimiento de los términos vigentes y las restricciones legales porque serán vinculantes para usted. Ciertas cláusulas de estos términos y restricciones legales pueden ser reemplazadas por avisos legales expresamente designados o términos ubicados en páginas particulares de este sitio web.
8
+
9
+ privacy:
10
+ content_html:
11
+ main_content:
12
+ <p><b>Política de Privacidad</b></p><p>
13
+ Estamos comprometidas con la seguridad de los datos de sus usuarios. Por esto, nuestra política de Privacidad establece los términos en que Example RE usa y protege la información que es proporcionada por sus clientes. </p><p>
14
+ <b>
15
+ Uso Información recogida</b></p><p>
16
+ Nuestro sitio web podrá recoger información personal por ejemplo; Nombre, información de contacto como tu dirección de correo electrónica e información demográfica. Así mismo cuando sea necesario podrá ser requerida información específica para procesar algún pedido o realizar una entrega o facturación.
17
+ Example RE no venderá, cederá ni distribuirá la información personal que es recopilada sin tu consentimiento, salvo que sea requerido por un juez con una orden judicial.
18
+ </p><p>
19
+ <b>
20
+ Enlaces a Terceros</b></p><p>
21
+ Este sitio web pudiera contener enlaces a otros sitios que pudieran ser de su interés. Una vez que haces clic en estos enlaces y abandones nuestra página, ya no tenemos control sobre el sitio al que seas redirigido y por lo tanto no somos responsables de los términos o privacidad ni de la protección de tus datos en esos otros sitios terceros. Dichos sitios están sujetos a sus propias políticas de privacidad por lo cual es recomendable que los consultes para confirmar que estás de acuerdo con estas.
22
+ </p><p>
23
+ <b>
24
+ Cambios de la Política</b></p><p>
25
+ Para mantenernos actualizados, nuestra Política de Privacidad puede cambiar con el tiempo por lo que te recomendamos y enfatizamos revisar esta página para asegurarte que estás de acuerdo con dichos cambios.</p>
26
+
27
+
28
+ sell:
29
+ content_html:
30
+ main_content:
31
+ <h2> Vender tu propiedad con nosotros </h2>
32
+ Nuestro compromiso con usted es mantener los más altos estándares de profesionalidad mientras le ayuda a tomar sus mejores decisiones de bienes raíces. Desea vender su propiedad con total confianza. Al hacerlo, usted se merece lo mejor. Nuestra meta en Example RE es proveerle un servicio excepcional mientras satisface sus necesidades en cada paso del proceso de venta.
33
+ <h2> Experiencia regional
34
+ </h2>
35
+ Nuestros clientes y nuestros afiliados de negocios le dirán, no hay listados en nuestra región de mercado de Birmingham que recibe más exposición a los compradores que los que figuran con nosotros. Nuestro marketing basado en Internet, publicidad impresa y esfuerzos de marketing colateral permiten a nuestros listados una exposición inigualable a los compradores que están buscando bienes raíces en Birmingham. La fuerza de nuestro marketing en línea, publicidad impresa y contactos directos de los corredores impulsan un tráfico significativo a nuestro sitio web, que proporciona información detallada sobre todos nuestros listados de propiedades.
36
+ <h2> Listo para ayudarte
37
+ </h2>
38
+ Nuestros profesionales de corretaje y personal calificados en Example RE tienen la experiencia, el conocimiento y la discreción para representar su propiedad en Birmingham. Nuestro equipo de corredores dedicados y profesionales y el personal están comprometidos a proporcionar un servicio extraordinario. Puede estar seguro de que Example RE proporciona las herramientas y ayuda a su corredor en la comercialización de su propiedad de manera eficiente y experta a los mercados locales, regionales y nacionales. Se necesita más de una señal en su casa o propiedad para atraer a los compradores. Creamos un plan de marketing completo para satisfacer sus necesidades.
39
+
40
+ home:
41
+ landing_hero:
42
+ landing_title_a:
43
+ El mejor inmobiliario en Springfield
44
+ landing_content_a: >
45
+ <ul class="list-carousel">
46
+ <li><i class="fa fa-check-square">
47
+ </i>Nuestro equipo está formado por profesionales</li>
48
+ <li><i class="fa fa-check-square"></i>Encontraremos lo mejor para usted</li>
49
+ </ul>
50
+ landing_img:
51
+ db/example_images/carousel_villa_with_pool.jpg
52
+
53
+ content_html:
54
+ main_content: <p><b>Noticia importante:</b>&nbsp; Para este mes estamos haciendo evaluaciones de viviendas gratis. &nbsp;Llamanos para mas información.</p>
55
+
56
+ about_us_services:
57
+ title_a: Encuentra tu hogar
58
+ content_a: <p>Explícanos exactamente lo que estás buscando, tus necesidades, estamos seguros de que encontraremos el hogar que necesitáis tú y tu familia.</p>
59
+ title_b: Agentes Inmobiliarios
60
+ content_b: <p>Somos agentes inmobiliarios profesionales. Te ayudamos con todos los trámites, y te ahorramos dinero con las transacciones. Vamos de la mano durante todo el proceso, te guiamos y asesoramos desde el primer momento hasta el último.</p>
61
+ title_c: Vende tu vivienda
62
+ content_c: <p>Si necesitas vender una vivienda, ponte en contacto con nosotros. Con nuestra experiencia en el sector y en la zona haremos este trámite de forma rápida y sencilla.</p>
63
+ about-us:
64
+ content_html:
65
+ main_content: <p><b>Noticia importante:</b>&nbsp; Para este mes estamos haciendo evaluaciones de viviendas gratis. &nbsp;Llamanos para mas información.</p>
66
+ our_agency:
67
+ title_a:
68
+ Sobre nosotros
69
+ content_a:
70
+ <p>Llevamos muchos años comprometidos con ofrecer un servicio integral y conseguir solo transacciones con éxito y felicidad por parte de los compradores y vendedores.</p>
71
+ <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
72
+ our_agency_img:
73
+ db/example_images/carousel_grass.jpg
74
+
@@ -0,0 +1,73 @@
1
+ # placeholder - awaiting translation
2
+ ---
3
+ it:
4
+ legal:
5
+ content_html:
6
+ main_content:
7
+ <b> DISCLAIMER</b> </br>
8
+ The Example RE Internet team strives to provide you with useful, accurate, and timely information on this website. Accordingly, Example RE has attempted to provide accurate information and materials on this website on this website but assumes no responsibility for the accuracy and completeness of that information and materials on this website but assumes no responsibility for the accuracy and comleteness of that information or materials. Example RE may change the content of any information or materials available at this webite, or to the products described in them, at any time without notice. However, Example RE makes no commitment to update the information or materials on this website which, as a result, may be out of date. Information and opinions expressed in bulletion boards or other forums are not necessarily those of Example RE. Neither Example RE, nor its officer, directors, employees, agents, distributors, or affiliates are responsible or liable for any loss damage (including, but not limited to, actual, consequential, or punitive), liability, claim, or other injury or cause related to or resulting from any information posted on Example RE’s website. Example RE reserves the right to revise these terms and/or legal restriction at any time. You are responsible for reviewing this page from time to time to ensure compliance with the then-current terms and legal restrictions because they will be binding on you. Certain provisions of these terms and legal restrictions may be superseded by expressly designated legal notices or terms located on particular pages of this website.
9
+
10
+
11
+ privacy:
12
+ content_html:
13
+ main_content:
14
+ <P> <b> Privacy Policy </b> </p> <p>
15
+ We are committed to the security of your users' data. Therefore, our Privacy Policy sets forth the terms in which Example RE uses and protects information that is provided by its customers. </p> <p>
16
+ <b>
17
+ Use Collected Information </b> </p> <p>
18
+ Our website may collect personal information such as your email address and demographic information. Also, when necessary, specific information may be required to process an order or make a delivery or billing.
19
+ Example RE will not sell, cede or distribute personal information that is collected without your consent, unless required by a court with a court order.
20
+ </p>
21
+ <p><b>Links to Third Parties </b> </p> <p>
22
+ This website may contain links to other sites that may be of interest to you. Once you click on these links and leave our page, we no longer have control over the site to which you are redirected and therefore we are not responsible for the terms or privacy or protection of your data on those other third sites. These sites are subject to their own privacy policies so it is recommended that you consult them to confirm that you agree with them.
23
+ </p>
24
+
25
+
26
+ sell:
27
+ content_html:
28
+ main_content:
29
+ <h2>Sell Your Property with Us</h2>
30
+ Our commitment to you is to uphold the highest standards of professionalism while helping you make your best real estate decisions. You want to sell your property with full confidence. In doing so, you deserve our very best. Our goal at Example Real Estate is to provide you with exceptional service while meeting your needs at each step of the selling process.
31
+ <h2>Regional Expertise
32
+ </h2>
33
+ Our clients and our business affiliates will tell you, no listings in our market region of Birmingham receive more exposure to buyers than those listed with Example Real Estate. Our Internet-based marketing, print advertising, and collateral marketing efforts allow our listings unequaled exposure to buyers who are looking for real estate in Birmingham. The strength of our online marketing, print advertising, and direct broker contacts drive significant traffic to our website, which provides detailed information on all of our property listings.
34
+ <h2>Ready to Help You
35
+ </h2>
36
+ Our Qualified Brokerage Professionals and Staff at Example Real Estate have the experience, the knowledge and the discretion to represent your property throughout Birmingham. Our team of dedicated and professional brokers and staff are committed to providing extraordinary service. You may be assured that Example RE provides the tools and assists your broker in marketing your property efficiently and expertly to local, regional and national markets. It takes more than a sign on your home or property to attract buyers. We create a complete marketing plan to meet your needs.
37
+
38
+ home:
39
+ landing_hero:
40
+ landing_title_a:
41
+ El mejor inmobiliario en Springfield
42
+ landing_content_a: >
43
+ <ul class="list-carousel">
44
+ <li><i class="fa fa-check-square">
45
+ </i>Nuestro equipo está formado por profesionales</li>
46
+ <li><i class="fa fa-check-square"></i>Encontraremos lo mejor para usted</li>
47
+ </ul>
48
+ landing_img:
49
+ db/example_images/carousel_villa_with_pool.jpg
50
+
51
+ content_html:
52
+ main_content: <p><b>Important notice:</b>&nbsp; We are offering free property evaluations this month only. Call us now to take advantage of this special offer.</p>
53
+
54
+ about_us_services:
55
+ title_a: Find your home
56
+ content_a: <p>Explain to us exactly what you are looking for and we will do our best to find that ideal property that meets your needs.</p>
57
+ title_b: Professional estate agents
58
+ content_b: <p>We are professional estate agents. We will help you with all the paperwork and save you money along the way.</p>
59
+ title_c: Sell your property
60
+ content_c: <p>If you need to sell your property, get in touch with us. With our experience in the industry and the local area we will get it done in the quickest and simplest way.</p>
61
+
62
+ about-us:
63
+ content_html:
64
+ main_content: <p><b>Important notice:</b>&nbsp; We are offering free property evaluations this month only. Call us now to take advantage of this special offer.</p>
65
+ our_agency:
66
+ title_a:
67
+ About Us
68
+ content_a:
69
+ <p>We are a professional estate agents with many years experience of delivering a great service
70
+ for our clients.</p>
71
+ our_agency_img:
72
+ db/example_images/carousel_grass.jpg
73
+
@@ -0,0 +1,73 @@
1
+ # placeholder - awaiting translation
2
+ ---
3
+ pt:
4
+ legal:
5
+ content_html:
6
+ main_content:
7
+ <b> DISCLAIMER</b> </br>
8
+ The Example RE Internet team strives to provide you with useful, accurate, and timely information on this website. Accordingly, Example RE has attempted to provide accurate information and materials on this website on this website but assumes no responsibility for the accuracy and completeness of that information and materials on this website but assumes no responsibility for the accuracy and comleteness of that information or materials. Example RE may change the content of any information or materials available at this webite, or to the products described in them, at any time without notice. However, Example RE makes no commitment to update the information or materials on this website which, as a result, may be out of date. Information and opinions expressed in bulletion boards or other forums are not necessarily those of Example RE. Neither Example RE, nor its officer, directors, employees, agents, distributors, or affiliates are responsible or liable for any loss damage (including, but not limited to, actual, consequential, or punitive), liability, claim, or other injury or cause related to or resulting from any information posted on Example RE’s website. Example RE reserves the right to revise these terms and/or legal restriction at any time. You are responsible for reviewing this page from time to time to ensure compliance with the then-current terms and legal restrictions because they will be binding on you. Certain provisions of these terms and legal restrictions may be superseded by expressly designated legal notices or terms located on particular pages of this website.
9
+
10
+
11
+ privacy:
12
+ content_html:
13
+ main_content:
14
+ <P> <b> Privacy Policy </b> </p> <p>
15
+ We are committed to the security of your users' data. Therefore, our Privacy Policy sets forth the terms in which Example RE uses and protects information that is provided by its customers. </p> <p>
16
+ <b>
17
+ Use Collected Information </b> </p> <p>
18
+ Our website may collect personal information such as your email address and demographic information. Also, when necessary, specific information may be required to process an order or make a delivery or billing.
19
+ Example RE will not sell, cede or distribute personal information that is collected without your consent, unless required by a court with a court order.
20
+ </p>
21
+ <p><b>Links to Third Parties </b> </p> <p>
22
+ This website may contain links to other sites that may be of interest to you. Once you click on these links and leave our page, we no longer have control over the site to which you are redirected and therefore we are not responsible for the terms or privacy or protection of your data on those other third sites. These sites are subject to their own privacy policies so it is recommended that you consult them to confirm that you agree with them.
23
+ </p>
24
+
25
+
26
+ sell:
27
+ content_html:
28
+ main_content:
29
+ <h2>Sell Your Property with Us</h2>
30
+ Our commitment to you is to uphold the highest standards of professionalism while helping you make your best real estate decisions. You want to sell your property with full confidence. In doing so, you deserve our very best. Our goal at Example Real Estate is to provide you with exceptional service while meeting your needs at each step of the selling process.
31
+ <h2>Regional Expertise
32
+ </h2>
33
+ Our clients and our business affiliates will tell you, no listings in our market region of Birmingham receive more exposure to buyers than those listed with Example Real Estate. Our Internet-based marketing, print advertising, and collateral marketing efforts allow our listings unequaled exposure to buyers who are looking for real estate in Birmingham. The strength of our online marketing, print advertising, and direct broker contacts drive significant traffic to our website, which provides detailed information on all of our property listings.
34
+ <h2>Ready to Help You
35
+ </h2>
36
+ Our Qualified Brokerage Professionals and Staff at Example Real Estate have the experience, the knowledge and the discretion to represent your property throughout Birmingham. Our team of dedicated and professional brokers and staff are committed to providing extraordinary service. You may be assured that Example RE provides the tools and assists your broker in marketing your property efficiently and expertly to local, regional and national markets. It takes more than a sign on your home or property to attract buyers. We create a complete marketing plan to meet your needs.
37
+
38
+ home:
39
+ landing_hero:
40
+ landing_title_a:
41
+ El mejor inmobiliario en Springfield
42
+ landing_content_a: >
43
+ <ul class="list-carousel">
44
+ <li><i class="fa fa-check-square">
45
+ </i>Nuestro equipo está formado por profesionales</li>
46
+ <li><i class="fa fa-check-square"></i>Encontraremos lo mejor para usted</li>
47
+ </ul>
48
+ landing_img:
49
+ db/example_images/carousel_villa_with_pool.jpg
50
+
51
+ content_html:
52
+ main_content: <p><b>Important notice:</b>&nbsp; We are offering free property evaluations this month only. Call us now to take advantage of this special offer.</p>
53
+
54
+ about_us_services:
55
+ title_a: Find your home
56
+ content_a: <p>Explain to us exactly what you are looking for and we will do our best to find that ideal property that meets your needs.</p>
57
+ title_b: Professional estate agents
58
+ content_b: <p>We are professional estate agents. We will help you with all the paperwork and save you money along the way.</p>
59
+ title_c: Sell your property
60
+ content_c: <p>If you need to sell your property, get in touch with us. With our experience in the industry and the local area we will get it done in the quickest and simplest way.</p>
61
+
62
+ about-us:
63
+ content_html:
64
+ main_content: <p><b>Important notice:</b>&nbsp; We are offering free property evaluations this month only. Call us now to take advantage of this special offer.</p>
65
+ our_agency:
66
+ title_a:
67
+ About Us
68
+ content_a:
69
+ <p>We are a professional estate agents with many years experience of delivering a great service
70
+ for our clients.</p>
71
+ our_agency_img:
72
+ db/example_images/carousel_grass.jpg
73
+
@@ -0,0 +1,389 @@
1
+ ---
2
+ - slug: top_nav_home
3
+ page_slug: home
4
+ link_path: home_path
5
+ sort_order: 1
6
+ visible: true
7
+ is_external: false
8
+ placement: :top_nav
9
+ link_title_en: Home
10
+ link_title_es: Inicio
11
+ link_title_fr: Accueil
12
+ link_title_de: Zuhause
13
+ link_title_ru: Главная
14
+ link_title_pt: Iníco
15
+ - slug: top_nav_buy
16
+ page_slug: buy
17
+ link_path: buy_path
18
+ sort_order: 2
19
+ visible: true
20
+ is_external: false
21
+ placement: :top_nav
22
+ link_title_en: Buy
23
+ link_title_es: Comprar
24
+ link_title_fr: Acheter
25
+ link_title_de: Kaufen
26
+ link_title_ru: купить
27
+ link_title_pt: Comprar
28
+ - slug: top_nav_rent
29
+ page_slug: rent
30
+ link_path: rent_path
31
+ sort_order: 3
32
+ visible: true
33
+ is_external: false
34
+ placement: :top_nav
35
+ link_title_en: Rent
36
+ link_title_es: Arrendar
37
+ link_title_fr: Louer
38
+ link_title_de: Miete
39
+ link_title_ru: Аренда
40
+ link_title_pt: Aluguel
41
+ - slug: top_nav_sell
42
+ page_slug: sell
43
+ link_path: show_page_path
44
+ link_path_params: sell
45
+ sort_order: 4
46
+ visible: true
47
+ is_external: false
48
+ placement: :top_nav
49
+ link_title_en: Sell
50
+ link_title_es: Vender
51
+ link_title_fr: Vendre
52
+ link_title_de: Verkaufen
53
+ link_title_ru: Продажа
54
+ link_title_pt: Vender
55
+ - slug: top_nav_about_us
56
+ page_slug: about-us
57
+ # link_path: about_us_path
58
+ link_path: show_page_path
59
+ link_path_params: about-us
60
+ sort_order: 5
61
+ visible: true
62
+ is_external: false
63
+ placement: :top_nav
64
+ link_title_en: About Us
65
+ link_title_es: Sobre Nosotros
66
+ link_title_fr: A propos
67
+ link_title_de: Über uns
68
+ link_title_ru: О нас
69
+ link_title_pt: Sobre nós
70
+ - slug: top_nav_contact_us
71
+ page_slug: contact-us
72
+ link_path: contact_us_path
73
+ sort_order: 6
74
+ visible: true
75
+ is_external: false
76
+ placement: :top_nav
77
+ link_title_en: Contact Us
78
+ link_title_es: Contactar
79
+ link_title_fr: Contacter
80
+ link_title_de: Kontact
81
+ link_title_ru: связаться с нами
82
+ link_title_pt: Contato
83
+ - slug: top_nav_legal_notice
84
+ page_slug: legal
85
+ link_path: show_page_path
86
+ link_path_params: legal
87
+ sort_order: 7
88
+ visible: false
89
+ is_external: false
90
+ placement: :top_nav
91
+ link_title_en: Legal Notice
92
+ link_title_es: Aviso Legal
93
+ link_title_fr: Legal Notice
94
+ link_title_de: Impressum
95
+ link_title_ru: Официальное уведомление
96
+ link_title_pt: Notícia legal
97
+ - slug: top_nav_privacy_policy
98
+ page_slug: privacy
99
+ link_path: show_page_path
100
+ link_path_params: privacy
101
+ sort_order: 8
102
+ visible: false
103
+ is_external: false
104
+ placement: :top_nav
105
+ link_title_en: Privacy Policy
106
+ link_title_es: Politica de Privacidad
107
+ link_title_fr: Privacy Policy
108
+ link_title_de: Datenschutz-Bestimmungen
109
+ link_title_pt: Política de Privacidade
110
+ link_title_ru: Политика конфиденциальности
111
+ - slug: top_nav_admin
112
+ link_path: admin_with_locale_path
113
+ sort_order: 9
114
+ visible: true
115
+ is_external: false
116
+ placement: :top_nav
117
+ link_title_en: Admin
118
+ link_title_es: Admin
119
+ link_title_fr: Admin
120
+ link_title_de: Admin
121
+ link_title_ru: Администратор
122
+ link_title_pt: Admin
123
+ - slug: footer_home
124
+ page_slug: home
125
+ link_path: home_path
126
+ sort_order: 1
127
+ visible: false
128
+ is_external: false
129
+ placement: :footer
130
+ link_title_en: Home
131
+ link_title_es: Inicio
132
+ link_title_fr: Accueil
133
+ link_title_de: Zuhause
134
+ link_title_ru: Главная
135
+ link_title_pt: Iníco
136
+ - slug: footer_buy
137
+ page_slug: buy
138
+ link_path: buy_path
139
+ sort_order: 2
140
+ visible: false
141
+ is_external: false
142
+ placement: :footer
143
+ link_title_en: Buy
144
+ link_title_es: Comprar
145
+ link_title_fr: Acheter
146
+ link_title_de: Kaufen
147
+ link_title_ru: купить
148
+ link_title_pt: Comprar
149
+ - slug: footer_rent
150
+ page_slug: rent
151
+ link_path: rent_path
152
+ sort_order: 3
153
+ visible: false
154
+ is_external: false
155
+ placement: :footer
156
+ link_title_en: Rent
157
+ link_title_es: Arrendar
158
+ link_title_fr: Louer
159
+ link_title_de: Miete
160
+ link_title_ru: Аренда
161
+ link_title_pt: Aluguel
162
+ - slug: footer_sell
163
+ page_slug: sell
164
+ link_path: show_page_path
165
+ link_path_params: sell
166
+ sort_order: 4
167
+ visible: false
168
+ is_external: false
169
+ placement: :footer
170
+ link_title_en: Sell
171
+ link_title_es: Vender
172
+ link_title_fr: Vendre
173
+ link_title_de: Verkaufen
174
+ link_title_ru: Продажа
175
+ link_title_pt: Vender
176
+ - slug: footer_about_us
177
+ page_slug: about-us
178
+ link_path: about_us_path
179
+ sort_order: 5
180
+ visible: false
181
+ is_external: false
182
+ placement: :footer
183
+ link_title_en: About Us
184
+ link_title_es: Sobre Nosotros
185
+ link_title_fr: A propos
186
+ link_title_de: Über uns
187
+ link_title_ru: О нас
188
+ link_title_pt: Sobre nós
189
+ - slug: footer_contact_us
190
+ page_slug: contact-us
191
+ link_path: contact_us_path
192
+ sort_order: 6
193
+ visible: true
194
+ is_external: false
195
+ placement: :footer
196
+ link_title_en: Contact Us
197
+ link_title_es: Contactar
198
+ link_title_fr: Contacter
199
+ link_title_de: Kontact
200
+ link_title_ru: связаться с нами
201
+ link_title_pt: Contato
202
+ - slug: footer_legal_notice
203
+ page_slug: legal
204
+ link_path: show_page_path
205
+ link_path_params: legal
206
+ sort_order: 7
207
+ visible: true
208
+ is_external: false
209
+ placement: :footer
210
+ link_title_en: Legal Notice
211
+ link_title_es: Aviso Legal
212
+ link_title_fr: Legal Notice
213
+ link_title_de: Impressum
214
+ link_title_ru: Официальное уведомление
215
+ link_title_pt: Notícia legal
216
+ - slug: footer_privacy_policy
217
+ page_slug: privacy
218
+ link_path: show_page_path
219
+ link_path_params: privacy
220
+ sort_order: 8
221
+ visible: true
222
+ is_external: false
223
+ placement: :footer
224
+ link_title_en: Privacy Policy
225
+ link_title_es: Politica de Privacidad
226
+ link_title_fr: Privacy Policy
227
+ link_title_de: Datenschutz-Bestimmungen
228
+ link_title_pt: Política de Privacidade
229
+ link_title_ru: Политика конфиденциальности
230
+ - slug: footer_admin
231
+ link_path: admin_with_locale_path
232
+ sort_order: 9
233
+ visible: true
234
+ is_external: false
235
+ placement: :footer
236
+ link_title_en: Admin
237
+ link_title_es: Admin
238
+ link_title_fr: Admin
239
+ link_title_de: Admin
240
+ link_title_ru: Администратор
241
+ link_title_pt: Admin
242
+ # - slug: top_nav_facebook
243
+ # link_url: "https://www.facebook.com/propertywebbuilder"
244
+ # sort_order: 1
245
+ # visible: true
246
+ # icon_class: "fa-facebook fa"
247
+ # href_target: "_blank"
248
+ # is_external: true
249
+ # placement: :top_nav
250
+ # link_title_en: Facebook
251
+ # link_title_es: Facebook
252
+ # link_title_fr: Facebook
253
+ # link_title_de: Facebook
254
+ - slug: social_media_facebook
255
+ link_url: "https://www.facebook.com/propertywebbuilder"
256
+ sort_order: 1
257
+ visible: true
258
+ icon_class: "fa-facebook fa"
259
+ href_target: "_blank"
260
+ is_external: true
261
+ placement: :social_media
262
+ link_title_en: Facebook
263
+ link_title_es: Facebook
264
+ link_title_fr: Facebook
265
+ link_title_de: Facebook
266
+ - slug: social_media_twitter
267
+ link_url: "https://twitter.com/prptywebbuilder"
268
+ sort_order: 1
269
+ visible: true
270
+ icon_class: "fa-twitter fa"
271
+ href_target: "_blank"
272
+ is_external: true
273
+ placement: :social_media
274
+ link_title_en: Twitter
275
+ link_title_es: Twitter
276
+ link_title_fr: Twitter
277
+ link_title_de: Twitter
278
+ # links with a placement of admin and visibility true
279
+ # will show up in the admin panel
280
+ - slug: admin_home
281
+ page_slug: home
282
+ link_path: home_path
283
+ sort_order: 1
284
+ visible: true
285
+ is_external: false
286
+ placement: :admin
287
+ link_title_en: Home
288
+ link_title_es: Inicio
289
+ link_title_fr: Accueil
290
+ link_title_de: Zuhause
291
+ link_title_ru: Главная
292
+ link_title_pt: Iníco
293
+ - slug: admin_buy
294
+ page_slug: buy
295
+ link_path: buy_path
296
+ sort_order: 2
297
+ visible: false
298
+ is_external: false
299
+ placement: :admin
300
+ link_title_en: Buy
301
+ link_title_es: Comprar
302
+ link_title_fr: Acheter
303
+ link_title_de: Kaufen
304
+ link_title_ru: купить
305
+ link_title_pt: Comprar
306
+ - slug: admin_rent
307
+ page_slug: rent
308
+ link_path: rent_path
309
+ sort_order: 3
310
+ visible: false
311
+ is_external: false
312
+ placement: :admin
313
+ link_title_en: Rent
314
+ link_title_es: Arrendar
315
+ link_title_fr: Louer
316
+ link_title_de: Miete
317
+ link_title_ru: Аренда
318
+ link_title_pt: Aluguel
319
+ - slug: admin_sell
320
+ page_slug: sell
321
+ link_path: show_page_path
322
+ link_path_params: sell
323
+ sort_order: 4
324
+ visible: true
325
+ is_external: false
326
+ placement: :admin
327
+ link_title_en: Sell
328
+ link_title_es: Vender
329
+ link_title_fr: Vendre
330
+ link_title_de: Verkaufen
331
+ link_title_ru: Продажа
332
+ link_title_pt: Vender
333
+ - slug: admin_about_us
334
+ page_slug: about-us
335
+ link_path: about_us_path
336
+ sort_order: 5
337
+ visible: true
338
+ is_external: false
339
+ placement: :admin
340
+ link_title_en: About Us
341
+ link_title_es: Sobre Nosotros
342
+ link_title_fr: A propos
343
+ link_title_de: Über uns
344
+ link_title_ru: О нас
345
+ link_title_pt: Sobre nós
346
+ - slug: admin_contact_us
347
+ page_slug: contact-us
348
+ link_path: contact_us_path
349
+ sort_order: 6
350
+ visible: true
351
+ is_external: false
352
+ placement: :admin
353
+ link_title_en: Contact Us
354
+ link_title_es: Contactar
355
+ link_title_fr: Contacter
356
+ link_title_de: Kontact
357
+ link_title_ru: связаться с нами
358
+ link_title_pt: Contato
359
+ - slug: admin_legal_notice
360
+ page_slug: legal
361
+ link_path: show_page_path
362
+ link_path_params: legal
363
+ sort_order: 7
364
+ visible: true
365
+ is_external: false
366
+ placement: :admin
367
+ link_title_en: Legal Notice
368
+ link_title_es: Aviso Legal
369
+ link_title_fr: Legal Notice
370
+ link_title_de: Impressum
371
+ link_title_ru: Официальное уведомление
372
+ link_title_pt: Notícia legal
373
+ - slug: admin_privacy_policy
374
+ page_slug: privacy
375
+ link_path: show_page_path
376
+ link_path_params: privacy
377
+ sort_order: 8
378
+ visible: true
379
+ is_external: false
380
+ placement: :admin
381
+ link_title_en: Privacy Policy
382
+ link_title_es: Politica de Privacidad
383
+ link_title_fr: Privacy Policy
384
+ link_title_de: Datenschutz-Bestimmungen
385
+ link_title_pt: Política de Privacidade
386
+ link_title_ru: Политика конфиденциальности
387
+
388
+
389
+