This file contains 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
$container_width: 90% !default; | |
$width: 96% !default; | |
$gutter: 4% !default; | |
$breakpoint-small: 33.75em !default; // 540px | |
$breakpoint-med: 45em !default; // 720px | |
$breakpoint-large: 60em !default; // 960px | |
.hidden-sm { | |
display: none; | |
} |
This file contains 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
dnf update -y | |
dnf install -y curl jq unzip | |
export CLUSTER_DC=fra1 | |
export CLUSTER_PRIMARY_DC=fra1 | |
export CLUSTER_PRIVATE_IPS=1.1.2.2,2.2.3.3,3.3.4.4 | |
export CLUSTER_PUBLIC_IPS=1.1.1.1,2.2.2.2,3.3.3.3 | |
export CLUSTER_SIZE=$(echo $CLUSTER_PUBLIC_IPS | jq -Rc 'split(",") | length') | |
export DOCKER_USERNAME="" |
This file contains 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
<!-- webgains tracking --> | |
<script> | |
(function(w,e,b,g,a,i,n,s){w['ITCLKOBJ']=a;w[a]=w[a]||function(){(w[a].q=w[a].q||[]).push(arguments)},w[a].l=1*new Date();i=e.createElement(b),n=e.getElementsByTagName(b)[0];i.async=1;i.src=g;n.parentNode.insertBefore(i,n)})(window,document,'script','https://analytics.webgains.io/clk.min.js','ITCLKQ'); | |
ITCLKQ('set', 'internal.api', true); | |
ITCLKQ('set', 'internal.cookie', true); | |
ITCLKQ('click'); | |
</script> |
This file contains 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="//cdn.vbtrax.com/javascripts/va.js"></script> | |
<script> | |
VA.remoteLoad({ | |
whiteLabel: { id: 8, siteId: 1559, domain: 'vbtrax.com' }, | |
conversion: true, | |
conversionData: { | |
step: 'sale', // conversion name | |
revenue: '', // Revenue share | |
orderTotal: '{{ checkout.total_price | money_without_currency }}', | |
order: '{{ checkout.order_number }}' // order number |
This file contains 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
// Splitit | |
if(location.href.indexOf('/checkouts/') >= 0) { | |
// Splitit styles injection | |
const splititStyles = document.createElement('link'); | |
splititStyles.setAttribute('rel', 'stylesheet'); | |
splititStyles.setAttribute('src', '//cdn.shopify.com/s/files/1/0027/5536/2879/files/splitit-styles.css?56959'); | |
document.getElementsByTagName('head')[0].appendChild(splititStyles); | |
// JQuery injection | |
var ccJqueryScript = document.createElement('script'); |
This file contains 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
// Splitit sidebar | |
if(location.href.indexOf('/checkouts/') >= 0) { | |
// JQuery injection | |
var ccJqueryScript = document.createElement('script'); | |
ccJqueryScript.setAttribute('type', 'text/javascript'); | |
ccJqueryScript.setAttribute('src', '//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js'); | |
document.getElementsByTagName('head')[0].appendChild(ccJqueryScript); | |
// Checkout js injection | |
var ccScript = document.createElement('script'); |
This file contains 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
// IE 11, Safari and Safari iOS safeguard | |
if (typeof IntersectionObserver === 'undefined') { | |
setActive(true) | |
return | |
} | |
const signupButton = document.querySelector('.banner .button') | |
const observer = new IntersectionObserver(entry => { | |
entry = entry[0] |
This file contains 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
{% comment %} Default images {% endcomment %} | |
{% assign PHONE_IMAGE = image %} | |
{% assign TABLET_IMAGE = image %} | |
{% assign DESKTOP_IMAGE = image %} | |
{% comment %} Default widths {% endcomment %} | |
{% assign PHONE_IMAGE_WIDTH = '640x' %} | |
{% assign TABLET_IMAGE_WIDTH = '768x' %} | |
{% assign DESKTOP_IMAGE_WIDTH = '1440x' %} |
NewerOlder