27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# File 'app/concerns/presenters/product_helpers.rb', line 27
def section_intro(section)
case section
when :controls
'A great control is the secret to any great heating system.'
when :installation_kits
'With WarmlyYours’ installation kits, you can be sure that you have all the tools you need to install your floor-heating system.'
when :control_electrical_rough_in_kits
'The Control Electrical Rough-in Kit carries all the essentials an electrician needs while installing and connecting a thermostat with an electric radiant heating system.'
when :insulating_underlayments
'An insulating underlayment increases the efficiency of your floor heating system by preventing heat loss to your subfloor. Always recommended when installing on a concrete slab.'
when :accessories
'Feel free to chat us if you have any questions about these items.'
when :upgrades
'Enhance your product with one of these upgrades.'
when :installation_methods
'Our TempZone Floor Heating cable can be installed using either the <b>Prodeso Membrane or fixing strips</b>. The membrane cuts down on installation time and provides uncoupling benefits, while the fixing strips are more economical and provide a greater degree of design flexibility. </p>'
when :related_services
'Explore our collection of indoor and outdoor radiant heating services offered by our professionals.'
end&.html_safe
end
|