Last active
January 13, 2017 19:25
-
-
Save Robin-bob/f0e5845c3a706c23d93856a8da0f3964 to your computer and use it in GitHub Desktop.
faderpro.uscreen.io
This file contains hidden or 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
| <section class="one-category bundle-category"> | |
| <div class="section-wrapper"> | |
| <div class=""> | |
| <h2 class="one-category__header">Course Bundles</h2> | |
| <div class="one-category__description"> | |
| Buy more, Save more. Our course bundles combine multiple courses, usually related in some way, that are offered a at significant discsount. Below are our product bundles, the courses they include and the savings for each. | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <section class="one-category bundle-category"> | |
| <div class="section-wrapper"> | |
| <div class=""> | |
| {% for category in catalog.featured_categories %} | |
| {% if category.slug == "logicpro" %} | |
| <h2 class="one-category__header">{{category.title}}</h2> | |
| <div class="one-category__description">{{category.description}}</div> | |
| <a href="/orders/new?o=10021" class="bundle-link">BUY $49.99</a> | |
| <div class="programs-slider"> | |
| {% for program in category.programs limit: 25 %} | |
| <div> | |
| {% include "program_card" %} | |
| </div> | |
| {% endfor %} | |
| </div> | |
| {% endif %} | |
| {% endfor %} | |
| </div> | |
| </div> | |
| </section> | |
| <section class="one-category bundle-category"> | |
| <div class="section-wrapper"> | |
| <div class=""> | |
| {% for category in catalog.featured_categories %} | |
| {% if category.slug == "your-category-slug" %} | |
| <h2 class="one-category__header">{{category.title}}</h2> | |
| <div class="one-category__description">{{category.description}}</div> | |
| <a href="put-offer-link-here" class="bundle-link">BUY $49.99</a> | |
| <div class="programs-slider"> | |
| {% for program in category.programs limit: 25 %} | |
| <div> | |
| {% include "program_card" %} | |
| </div> | |
| {% endfor %} | |
| </div> | |
| {% endif %} | |
| {% endfor %} | |
| </div> | |
| </div> | |
| </section> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment