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
<!-- Place this before your </body> tag. --> | |
<script type="text/javascript"> | |
var rumbleBannerBackgroundColor, rumbleBannerTextColor, rumbleBannerLinkColor, rumbleBannerPlacement; | |
rumbleBannerBackgroundColor = "#161616"; | |
rumbleBannerTextColor = "#b0b0b0"; | |
rumbleBannerLinkColor = "#ffffff"; | |
rumbleBannerPlacement = "top"; // Optionally replace with "bottom". | |
</script> | |
<script src="https://d4nnn7wspfa3h.cloudfront.net/banner-2014.js" type="text/javascript"></script> |
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
git tag -a rumble13 -m "Final commit for the 2013 Rails Rumble." && git push --tags |
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
<VirtualHost *:8000> | |
ServerAlias * | |
DocumentRoot /var/www/ | |
<Directory /var/www/> | |
Options FollowSymLinks | |
AllowOverride None | |
Order allow,deny | |
Allow from all | |
</Directory> |
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
<h3>Tracks</h3> | |
<ol> | |
<li>First Track Name</li> | |
<li>Second Track Name</li> | |
<li>Third Track Name</li> | |
</ol> |
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
#main #content #product-grid .product a.info { | |
opacity: 0.0; | |
padding: 5px; | |
text-align: center; | |
-webkit-transition: all .1s linear; | |
-moz-transition: all .1s linear; | |
-ms-transition: all .1s linear; | |
-o-transition: all .1s linear; | |
transition: all .1s linear; | |
} |
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
[ | |
{ | |
"state:": "String; Pick From: unlisted, announced, available, unavailable", | |
"name": "String", | |
"description": "String or null", | |
"music_catalog_number": "String or null", | |
"music_pressing_information": "String or null", | |
"categories": ["Category Name", "Another Category Name", ...], | |
"images": ["http://...address-of-public-image", "http://...address-of-another-public-image", ...], | |
"variations": [ |
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
@font-face { | |
font-family: 'BoycottRegular'; | |
src: url('http://limitedrun.com.s3.amazonaws.com/fonts/1/BOYCOTT_-webfont.eot'); | |
src: url('http://limitedrun.com.s3.amazonaws.com/fonts/1/BOYCOTT_-webfont.eot?#iefix') format('embedded-opentype'), | |
url('http://limitedrun.com.s3.amazonaws.com/fonts/4/BOYCOTT_-webfont.woff') format('woff'), | |
url('http://limitedrun.com.s3.amazonaws.com/fonts/3/BOYCOTT_-webfont.ttf') format('truetype'), | |
url('http://limitedrun.com.s3.amazonaws.com/fonts/2/BOYCOTT_-webfont.svg#BoycottRegular') format('svg'); | |
font-weight: normal; | |
font-style: normal; |
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
{% for category in product.categories %} | |
{% unless category.slug == 'all' %} | |
{% for p in category.products %} | |
<p>{{ p.name }}</p> | |
{% endfor %} | |
{% endunless %} | |
{% endfor %} |
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
{% for product in store.category_by_slug['vinyl'].products limit:5 %} | |
{% endfor %} |
NewerOlder