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 class="m_Nav"> | |
<h3>Store Categories</h3> | |
<ul> | |
{{#each categories}} | |
<li> | |
<a href="{{url}}" alt="{{name}}" title="{{name}}">{{name}}</a> | |
</li> | |
{{/each}} | |
</ul> |
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
$userinfo = array( | |
'RTRKey'=>'C4E035CE-FE51-40BD-89CF-00BF4CD4C039', | |
'Options'=>63 | |
); | |
$wsdl_url = 'http://realtimerental.com/webservice/RTRWSAPI.asmx?wsdl'; | |
$client = new SoapClient($wsdl_url, array('trace' => 1, "exception" => 0)); | |
$res = $client->RTRPropertyCatalog($userinfo); | |
$RTRAllData = new SimpleXMLElement($res->RTRPropertyCatalogResult); |
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
<script type="text/javascript"> | |
jQuery(document).ready(function(){ | |
var carticon = jQuery('.TopMenu .CartLink span'); | |
var carttext = carticon.text(); | |
var cartnumber = carttext.replace(/\D/g,''); | |
carticon.text( cartnumber ); | |
}); | |
$( document ).ajaxComplete(function() { | |
var carticon = jQuery('.TopMenu .CartLink span'); |
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
{{#each brands}} | |
<a href="{{url}}">{{name}}</a> | |
{{/each}} |
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
@import url('https://fonts.googleapis.com/css?family=Open+Sans'); | |
span.item-metal, span.item-bid, span.item-ask, span.item-change.is-down, span.item-ask{ | |
font-family: "Open Sans"; | |
font-size: 13px; | |
line-height: 18px; | |
text-transform: uppercase; | |
} | |
span.item-metal{ | |
color: #c2c2c2; |
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
{ | |
"name": "Home Page - Collections", | |
"settings": [ | |
{ | |
"type": "header", | |
"content": "Collection 1" | |
}, | |
{ | |
"type": "collection", | |
"id": "col_1", |
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
<table class="specTable" border="0"> | |
<thead> | |
<tr> | |
<th colspan="2">Specifications</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>Specification #1</td> | |
<td>Lorem Ipsum Doller Sit</td> |
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
{% assign slider_enabled = true %} | |
<div class="clear full column separator" id="Slider"> | |
<ul class="rslides"> | |
{% for i in (1..6) %} | |
{% capture slide %}slide_{{ i }}{% endcapture %} | |
{% capture slide_link %}slide_{{ i }}_link{% endcapture %} | |
{% capture slide_img %}slide_{{ i }}.jpg{% endcapture %} | |
{% capture slide_alt %}slide_{{ i }}_alt{% endcapture %} | |
{% if settings[slide] %} | |
<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
var url = window.location.href; | |
jQuery('.Left .sf-menu li a').each(function(){ | |
var gthis = jQuery(this); | |
var furl = gthis.attr('href'); | |
if (furl == url){ | |
gthis.parent().addClass('active-ul'); | |
} | |
}) |
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
{% if section.blocks.size > 0 %} | |
<div class="index-section"> | |
<div class="collections" id="collections--{{ section.id }}" data-section-id="{{ section.id }}" data-section-type="collections-section"> | |
<ul class="collection-grid"> | |
{% for block in section.blocks %} | |
{% if block.settings.image != blank %} | |
<li id="collection--{{ block.id }}"> | |
<a href="{{ block.settings.link }}"> | |
{{ block.settings.image | img_url: '2048x' | img_tag: block.settings.image.alt }} | |
</a> |