{% assign file = page.fileName %}
{% assign lang = page.lang %}
{% assign folder = page.folderName %}
{% assign homeData= site.data[folder][lang][file] %}


<!DOCTYPE html>
<html lang="en">

{%- include head/index.html -%}
<style>
    .tools_headings {
        padding: 15px 0;
    }
</style>

<body>
    {%- include header/index.html -%}
    {%- if site.newFeatureBox -%}
    <div class="wordgametheme-sidebar-left"></div>
    <div class="wordgametheme-sidebar-right"></div>
    {%- endif -%}
    {%- if homeData.h1 or homeData.h2 -%}
    <div class="tools_headings" style="margin-top:20px">
        <div class="container">
            <div class="pageHeading text-center">
                <h1 class="heading pb-0 mb-3">{{homeData.h1}}</h1>
                {%- if homeData.h2 != '' -%}
                <h2>{{homeData.h2}}</h2>
                {%- endif -%}
            </div>
        </div>
    </div>
    {%- endif -%}

    <!-- Ezoic - sidebar_floating_1 - sidebar_floating_1 -->
    <div id="ezoic-pub-ad-placeholder-109"> </div>
    <!-- End Ezoic - sidebar_floating_1 - sidebar_floating_1 -->

    <!-- Ezoic - sidebar_floating_2 - sidebar_floating_2 -->
    <div id="ezoic-pub-ad-placeholder-110"> </div>
    <!-- End Ezoic - sidebar_floating_2 - sidebar_floating_2 -->


    <div class="tools-feature">
        {{content}}
    </div>

    {% include section/feature.html %}

    {%- if dataToShow.faqList -%}
    {%- if dataToShow.faqList.first.Question !='' -%}
    {% include section/faq.html %}
    {% endif %}
    {% endif %}

    {% include adBlocker/adBlocker.html %}

    {%- include Rating/rating.html -%}

    {%- if dataToShow.infographics.size > 0 -%}
    {%- include infographics/infographics.html -%} 
    {%- endif -%} 

    {%- assign langen = "en" -%}
    {%- if site.data[folder][langen][file].categories -%}
    {% assign categories= site.data[folder][langen][file].categories %}
    {%- else -%}
    {% assign categories= page.categories %}
    {%- endif -%}
    {%- if site.data[folder][langen][file].tags -%}
    {% assign tags= site.data[folder][langen][file].tags %}
    {%- else -%}
    {% assign tags= page.tags %}
    {%- endif -%}
    {%- if categories.size> 0 or tags.size>0-%}
    {%- include section/related_categories_post.html -%}
    {%- else -%}
    {%- include section/recent_posts.html -%}
    {% endif %}

    {%- include footer/index.html -%}

    {%- include script.html -%}
</body>

</html>