{% extends 'base.html.twig' %} {% block title %}Pool School Videos | {{ parent() }}{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block body %}

Pool School Videos

Understanding How Your Pool Works And How To Take Care Of It.

Owning your first pool may seem a bit overwhelming at first. For most the mystery and unknown can be the worst and scariest part. It is truly an easy process once you get the hang of it.

After we complete your pool installation we will schedule a time at you convenience to orient you with your pool operation and service items. To make sure you have all the information you need we have put together a video series below of the same pool school topics. Though this is exactly what pool school at your home consists of and likely could be viewed instead of pool school, we do recommend that you make time to work with us at your home as well in person.

{% set x = 0 %} {% for video in videoArray %} {% if x % 2 == 0 %} {% set videoSide = 'left' %} {% set descriptionSide = 'right' %} {% else %} {% set videoSide = 'right' %} {% set descriptionSide = 'left' %} {% endif %} {% set x = x + 1 %}
{% if videoSide == 'left' %} {% include 'blocks/videoBlock.html.twig' %} {% include 'blocks/videoDescriptionBlock.html.twig' %} {% else %} {% include 'blocks/videoDescriptionBlock.html.twig' %} {% include 'blocks/videoBlock.html.twig' %} {% endif %}
{% endfor %} {% endblock %}