Skip to content

Instantly share code, notes, and snippets.

@iurevych
Created July 8, 2014 11:45
Show Gist options
  • Save iurevych/3715236e306a95c5bc59 to your computer and use it in GitHub Desktop.
Save iurevych/3715236e306a95c5bc59 to your computer and use it in GitHub Desktop.
{% 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