{% extends 'base/base.html.twig' %} {% block title %}snowboard{% endblock %} {% block body %}
{% for img in imgs %} {% if img.category.name|lower == "snowboard" %} {% if img.display == 1 %}
{{img.title}}
{% if img.imageName %} {{img.altText}} {% else %} {{img.altText}} {% endif %}
{% endif %} {% endif %} {% endfor %}
{% for categoryText in categoryTexts %} {% if categoryText.category|lower == "snowboard" %}
{{ categoryText.title}}
           {{categoryText.text}} 
{{categoryText.button}} {% endif %} {% endfor %}
{% for section in sections %}

{{ section.price|upper }}

{{ section.priceTitle|upper }}

{% endfor %}
{% for package in packages %} {% if package.category.name|lower == "snowboard" %} {% if package.display == 1 %}
{% endif %} {% endif %} {% endfor %}
{% endblock %}