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
| <div id="pagination"> | |
| {% if pages.page_count > 1 %} | |
| {% if pages.current != pages.first %} | |
| <a href="{{ category | category_paginated_url: pages.first }}">First</a> | |
| {% endif %} | |
| {% if pages.current.previous %} | |
| <a href="{{ category | category_paginated_url: pages.current.previous }}">Prev</a> | |
| {% endif %} |
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
| {% tagged_with 'yugiohheading1' do products limit:1 %}{% for product in products %} | |
| <h4 class="widgettitle">{{ product.name }}</h4> | |
| {% endfor %}{% endtagged_with %} |
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
| updateCart: function() { | |
| console.log('update cart'); | |
| // | |
| var items = $('ul.cart-line-items').find('li'); | |
| var itemsL = items.length; | |
| var i = 0; |
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
| zencoding custom | |
| type 'cssheading' and make it show | |
| /* ============================================================================== | |
| /* ====== CSS MAIN HEADING | |
| /* ============================================================================= */ |
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
| /* ============================================================================== | |
| /* ====== ALERT Overlay | |
| /* ============================================================================= */ | |
| .alert-overlay { | |
| background: rgba(0,0,0,0.8); | |
| height: 200px; | |
| left: 50%; | |
| margin-left: -100px; | |
| margin-top: -100px; |
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
| {% find_products category_name:'Magic Products' order:sell_price do products limit:8 %} | |
| <div class="product-container large-12 columns"> | |
| <ul class="to-swipe medium-grid4x large-grid4x"> | |
| {% include "plugins/gridlist/markup" with product %} | |
| </ul> | |
| </div> | |
| {% endfind_products %} |
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
| {% find_products category_name:'Legacy of Darkness' order:sell_price do products limit:8 reverse %} | |
| {% for product in products %} | |
| <li class="product"> | |
| <a href="{{ product.buylist_aware_url }}"> | |
| <span class="image"><img src="{{ product.main_photo | photo_url: "medium" }}" /></span> | |
| <span class="name">{{ product.name }}</span> | |
| <span class="price">{{ product.sell_price }}</span> | |
| </a> | |
| </li> |
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
| /* ============================================================================== | |
| /* ====== PRODUCT PRICE & QTY BOX | |
| /* ============================================================================= */ | |
| .product-price-qty { | |
| background: #f7f7f7; | |
| border: 1px solid #d0d0d0; | |
| display: inline-block; | |
| height: 36px; | |
| line-height: 36px; |
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
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
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
| } | |
| // display widget | |
| function widget($args, $instance) { |