{% assign file = page.fileName %} {% assign lang = page.lang %} {% assign folder = page.folderName %} {% assign uspData= site.data[lang] %} {%- if site.showusps -%} <div class=“container”>

<h2 class=“feature-h1 my-4” >Our USPs</h2> <table class=“table table-bordered table-striped table-light ” >

<tbody>
            <tr>
                <td class="font-weight-bold" scope="row">
                    Security
                </td>
                <td>
                    100% (No files are sent to server for processing)
                </td>
            </tr>
            <tr>
                <td class="font-weight-bold" scope="row">
                    File size limits
                </td>
                <td>
                    None (No limit on size of files)
                </td>
            </tr>
            <tr>
                <td class="font-weight-bold" scope="row">
                    Usage limits
                </td>
                <td>
                    None (Process as many files as you want)
                </td>
            </tr>
            <tr>
                <td class="font-weight-bold" scope="row">
                    Price
                </td>
                <td>
                    Free
                </td>
            </tr>
            <tr>
                <td class="font-weight-bold" scope="row">
                    User Information Captured
                </td>
                <td>
                    None (We do not request for user information such as email / phone number)
                </td>
            </tr>
            <tr>
                <td class="font-weight-bold" scope="row">
                    Ads
                </td>
                <td>
                    None (We provide complete ad free experience)
                </td>
            </tr>
</tbody>

</table> </div> {%- else -%} {%- if uspData -%} <div class=“container”>

<h2 class=“feature-h1 my-4” >{{uspData.USP_Heading}}</h2> <table class=“table table-bordered table-striped table-light ” >

<tbody>
        {%- for item in uspData.USPS -%}
            <tr>
                <td class="font-weight-bold" scope="row">
                    {{item.USP_VALUE}}
                </td>
                <td>
                    {{item.USP_FACTOR}}
                </td>
            </tr>
        {%- endfor -%}
</tbody>

</table> </div> {%- endif -%} {%- endif -%}