{% assign file = page.fileName %} {% assign lang = page.lang %} {% assign folder = page.folderName %} {% assign homeData= site.data[folder][lang][file] %} <!DOCTYPE html> <html lang="{{homeData.htmlLangAtt}}"> {% include head/index.html %} <body> {% include header/index.html %} {%- include dropdown/langdropdown.html -%} <div class="flex-container"> <div class="flex-class py-5"> <h1 class="home-top-h1">{{homeData.h1}}</h1> <h2 class="home-top-h2">{{homeData.h2}}</h2> </div> </div> <div class="flex-container"> <div class="flex-class"> <ul class="home-features"> {% for product in homeData.features %} <li style=background:{{product.color}} class="home-feature-box"> <div class="home-inner-box"> <div class="div-cont feature-img"> <img src="{{product.icon}}" alt="star icon"> </div> </div> <div class="home-feature-desc">{{product.description}}</div><a class="home-feature-name" href="{{product.url}}">{{product.name}}</a> </li> {% endfor %} </ul> </div> </div> <div> {{content}} </div> {%- if homeData.HOW_TO_CONTENT -%} <div class="d-flex justify-content-center mt-5 mb-5" id="__cond-1011327"> <div class="flex-container pb-5"> <div class="flex-class"> <div class=" d-flex flex-wrap justify-content-center"> {%- if homeData.HOW_TO_CONTENT.logoImageUrl -%} <div class="how-to-img-wrapper "><img class="how-to-leftimg" src="{{homeData.HOW_TO_CONTENT.logoImageUrl}}" alt="{{homeData.HOW_TO_CONTENT.logoImageAlt}}"> </div> {%- endif -%} <div class="how-to-right"> <h3 class="how-to-title">{{homeData.HOW_TO_CONTENT.heading | replace: "$variable", page.value}}</h3> <ol class="how-to-list"> {% for data in homeData.HOW_TO_CONTENT.steps %} <li class="how-to-list-item">{{data | replace: "$variable", page.value}}</li> {% endfor %} </ol> </div> </div> </div> </div> </div> {%- endif -%} <!-- </div> --> <!-- How to section End --> <!-- FAQ section start --> {%- if homeData.FAQ -%} <div class="container"> <div class="row"> <div class="col-md-8 mx-auto"> <div class="faq"> <h2 class="feature-h1 text-center">Frequently Asked Questions</h2> <ul class="list-unstyled"> {% for data in homeData.FAQ %} <li> <h3 class="faq-question" itemprop="name">{{data.question | replace: "$variable", page.value}}<em style="transform: rotate(-135deg);"> <i></i></em> </h3> <div style="display: block;"> <p class="faq-answer" itemprop="text">{{data.answer | replace: "$variable", page.value}}</p> </div> </li> <hr> {% endfor %} </ul> </div> </div> </div> </div> {%- endif -%} {%- include share/socialshare.html -%} <!-- Footer --> {% include footer/index.html %} {% include script.html %} <!-- Footer End --> </body> </html>