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
alias sfDev="cd sites/spredfast.dev.dd" | |
alias showFiles='defaults write com.apple.finder AppleShowAllFiles YES; killall Finder /System/Library/CoreServices/Finder.app' | |
alias hideFiles='defaults write com.apple.finder AppleShowAllFiles NO; killall Finder /System/Library/CoreServices/Finder.app' | |
alias startServer='python -m SimpleHTTPServer' | |
export PATH="$PATH:/Applications/DevDesktop/drush" | |
eval "$(rbenv init -)" |
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 (${lead.xxxxx_day1} == 1) | |
<span><a href="http://www.xxxxxxx.com/xxxxx/xxxxx/xxxxx/xxxxx_day1.ics" target="_blank" style="font-weight:normal; color:#F26322 !important; text-decoration:underline;">Friday, March 13th</a></span><br /> | |
#end | |
#if (${lead.xxxxx_day2} == 1) | |
<span><a href="http://www.xxxxxxx.com/xxxxx/xxxxx/xxxxx/xxxxx_day2.ics" target="_blank" style="font-weight:normal; color:#F26322 !important; text-decoration:underline;">Saturday, March 14th</a></span><br /> | |
#end | |
#if (${lead.xxxxx_day3} == 1) | |
<span><a href="http://www.xxxxxxx.com/xxxxx/xxxxx/xxxxx/xxxxx_day3.ics" target="_blank" style="font-weight:normal; color:#F26322 !important; text-decoration:underline;">Sunday, March 15th</a></span><br /> |
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
## EUROPE ## | |
Albania | |
Andorra | |
Armenia | |
Austria | |
Azerbaijan | |
Belarus | |
Belgium | |
Bosnia and Herzegovina |
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
1033edge.com | |
11mail.com | |
123.com | |
123box.net | |
123india.com | |
123mail.cl | |
123qwe.co.uk | |
150ml.com | |
15meg4free.com | |
163.com |
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 compass | |
$icons: sprite-map("icons/*.png") | |
$icons-hd: sprite-map("icons-hd/*.png") | |
i | |
background: $icons | |
display: inline-block | |
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) | |
background: $icons-hd |
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" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script> | |
<script type="text/javascript"> | |
// set no conflict mode for jquery | |
var $jQ = jQuery.noConflict(); | |
$jQ(document).ready(function(){ | |
// all form submits will open in a new window | |
$jQ('.lpeRegForm').attr('target','_top'); | |
}); | |
</script> |