{% assign file = page.fileName %} {% assign lang = page.lang %} {% assign folder = page.folderName %} {% assign homeData= site.data[folder][lang][file] %} {%- assign boxColor = site.data[page.folderName][page.lang][page.fileName].color -%} {% include head/index.html %} {% include header/index.html %} {%- if homeData.H1 or homeData.H2 -%}
{%- if homeData.img -%}
{{homeData.imgalt}}
{%- endif -%}

{%- for word in homeData.H1 -%} {%- if forloop.first == true -%} {{word | capitalize }} {%- else -%} {{word}} {%- endif -%} {%- endfor -%}

{%- for word in homeData.H2 -%} {%- if forloop.first == true -%} {{word | capitalize }} {%- else -%} {{word}} {%- endif -%} {%- endfor -%}

{%- endif -%} {%- if homeData.features -%}
    {% for product in homeData.features %}
  • {{product.name}}
    home1-feature-icon

    {{product.description}}

  • {% endfor %}
{%- endif -%}
{{content}}
{%- if homeData.TEXTUAL_CONTENT -%}
{% for data in homeData.TEXTUAL_CONTENT %}
{{data.header}}
{{data.header | replace: "$variable", page.value}}
{{data.content | replace: "$variable", page.value}}
{% endfor %}
{%- endif -%} {%- if homeData.HOW_TO_CONTENT -%}

{{homeData.HOW_TO_CONTENT.mainHeading | replace: "$variable", page.value}}

{%- for data in homeData.HOW_TO_CONTENT.steps -%}
Step {{forloop.index}}

{{data.heading | replace: "$variable", page.value}}

  1. {{data.desc | replace: "$variable", page.value}}
{%- endfor -%}
{%- endif -%} {%- assign showFaqs = true -%} {%- for item in site.noFaqsList -%} {%- if item == page.lang -%} {%- assign showFaqs = false -%} {%- break -%} {%- else -%} {%- assign showFaqs = true -%} {%- endif -%} {%- endfor -%} {%- if showFaqs == true -%} {%- if homeData.FAQ -%}

{{homeData.faqheading | default: "FAQ's"}}

{% for data in homeData.FAQ %}
{{data.question | replace: "$variable",page.value}}

{{data.answer | replace: "$variable", page.value}}

{% endfor %}
{%- endif -%} {%- endif -%} {%- include Rating/rating.html -%} {% include footer/index.html %} {% include script.html %}