Advertisement
Guest User

Untitled

a guest
Jul 20th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.09 KB | None | 0 0
  1. <div class="terms-info">
  2. <h6>{{ campaign_design.text['footer_box_1_headline']|default('')|replace({'%service_name%': service.name}) }}</h6>
  3. <p class="terms">
  4. {% if campaign_design.text['footer_box_1_text'] is defined and campaign_design.text['footer_box_1_text'] is not empty %}
  5. {{ campaign_design.text['footer_box_1_text']|default('') }}
  6. {% else %}
  7. {{ service.description }}
  8. {% endif %}
  9. </p>
  10. <h6>{{ campaign_design.text['footer_box_2_headline']|default('')|raw }}</h6>
  11. <p class="terms">
  12. {% if campaign_design.text['footer_box_2_text'] is defined and campaign_design.text['footer_box_2_text'] is not empty %}
  13. {{ campaign_design.text['footer_box_2_text']|default('') }}
  14. {% else %}
  15. {{ service.priceTerms|replace({'%currency%': product.currency, '%subscription_price%': product.subscriptionPrice, '%trial_price%': product.price, '%trial_days%': product.trialDays }) }}
  16. {% endif %}
  17. </p>
  18. <h6>{{ campaign_design.text['footer_box_3_headline']|default('')|raw }}</h6>
  19. <p class="terms">
  20. {% if campaign_design.text['footer_box_3_text'] is defined and campaign_design.text['footer_box_3_text'] is not empty %}
  21. {{ campaign_design.text['footer_box_3_text']|default('') }}
  22. {% else %}
  23. {{ service.contestTerms|replace({'%product_name%': campaign.productName }) }}
  24. {% endif %}
  25. </p>
  26. <h6>{{ campaign_design.text['footer_box_4_headline']|default('')|raw }}</h6>
  27. <p class="terms">
  28. {% if campaign_design.text['footer_box_4_text'] is defined and campaign_design.text['footer_box_4_text'] is not empty %}
  29. {{ campaign_design.text['footer_box_4_text']|default('')|replace({'%support_email%': service.supportEmail}) }}
  30. {% else %}
  31. {{ service.supportTerms|replace({'%support_email%': service.supportEmail }) }}
  32. {% endif %}
  33. </p>
  34. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement