_includes/Usp/usp.html in appscms-tools-theme-1.0.9 vs _includes/Usp/usp.html in appscms-tools-theme-1.1.0

- old
+ new

@@ -1,20 +1,84 @@ {% assign file = page.fileName %} {% assign lang = page.lang %} {% assign folder = page.folderName %} {% assign uspData= site.data[folder][lang][file] %} +{%- 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> - <th scope="row"> + <td class="font-weight-bold" scope="row"> {{item.USP_VALUE}} - </th> + </td> <td> {{item.USP_FACTOR}} </td> </tr> {%- endfor -%} </tbody> -</table> \ No newline at end of file +</table> +</div> +{%- endif -%} +{%- endif -%} +