Created
July 8, 2014 11:45
-
-
Save iurevych/3715236e306a95c5bc59 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% capture template_split_test %}{{ "advocate_share_page_template" | split_test: "template1", "template2" }}{% endcapture %} | |
{% if template_split_test == "template1" %} | |
<div class="headline"> | |
<h1> | |
<b> | |
{% if advocate_info.sub_choice == false %} | |
Template 1 :( | |
{% elsif advocate_info.sub_choice == true %} | |
Template 1 ;) | |
{% endif %} | |
</b> | |
</h1> | |
<p>Give your friends $50 off the Clean Cleanse and get $50 for each friend that makes their first purchase.</p> | |
</div> | |
{% elsif template_split_test == "template2" %} | |
<div class="headline"> | |
<h1> | |
<b> | |
{% if advocate_info.sub_choice == false %} | |
Template 2 :( | |
{% elsif advocate_info.sub_choice == true %} | |
Template 2 ;) | |
{% endif %} | |
</b> | |
</h1> | |
<p>Give your friends $50 off the Clean Cleanse and get $50 for each friend that makes their first purchase.</p> | |
</div> | |
{% endif %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment