{% extends "templates/web.html" %} {%- block header -%} {{ header or "" }} {%- endblock -%} {% block meta_block %} {% include "templates/includes/meta_block.html" %} {% endblock %} {% block hero %}{{ hero or "" }}{% endblock %} {% block breadcrumbs %} {% if not no_breadcrumbs %} {% include "templates/includes/breadcrumbs.html" %} {% endif %} {% endblock %} {% block page_content %} {%- if content_type == 'Page Builder' -%} {{ page_builder_html }} {%- else -%}
{% include "templates/includes/slideshow.html" %}
{{ main_section or "" }}
{% if enable_comments -%}
Discuss
{% include 'templates/includes/comments/comments.html' %} {%- endif %}
{%- endif -%} {% endblock %} {% block style %} {%- if style -%} {%- endif -%} {%- for web_template, styles in (page_builder_styles or {}).items() -%} {%- if styles -%} {%- for style in styles -%} {%- endfor -%} {%- endif -%} {%- endfor -%} {% endblock %} {% block script %} {%- if script -%} {%- endif -%} {%- for web_template, scripts in (page_builder_scripts or {}).items() -%} {%- if scripts -%} {%- for script in scripts -%} {%- endfor -%} {%- endif -%} {%- endfor -%} {% endblock %}