Init Django-SHOP
This commit is contained in:
35
weirdlittleempire/static/weirdlittleempire/css/_footer.scss
Normal file
35
weirdlittleempire/static/weirdlittleempire/css/_footer.scss
Normal file
@@ -0,0 +1,35 @@
|
||||
@import "variables";
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
&.cms-toolbar-expanded {
|
||||
// prevents pushing a sticky footer outside the vertical viewport if CMS toolbar is active
|
||||
height: calc(100% - 46px);
|
||||
}
|
||||
}
|
||||
body {
|
||||
display: flex;
|
||||
height: 100%;
|
||||
flex-direction: column;
|
||||
main {
|
||||
flex: 1 0 auto;
|
||||
padding-bottom: $body-footer-margin;
|
||||
}
|
||||
footer {
|
||||
flex-shrink: 0;
|
||||
color: $body-footer-color;
|
||||
background: $body-footer-bg;
|
||||
padding-top: $body-footer-margin;
|
||||
padding-bottom: $body-footer-margin;
|
||||
a {
|
||||
color: $body-footer-link-color;
|
||||
text-decoration: none;
|
||||
&:hover {
|
||||
color: $body-footer-link-hover-color;
|
||||
}
|
||||
&:active {
|
||||
color: $body-footer-link-active-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
103
weirdlittleempire/static/weirdlittleempire/css/_navbar.scss
Normal file
103
weirdlittleempire/static/weirdlittleempire/css/_navbar.scss
Normal file
@@ -0,0 +1,103 @@
|
||||
@import "variables";
|
||||
@import "shop/css/navbar";
|
||||
|
||||
body {
|
||||
padding-top: $body-header-height;
|
||||
@include media-breakpoint-up(lg) {
|
||||
padding-top: $body-header-lg-height;
|
||||
}
|
||||
.navbar {
|
||||
$navbar: &;
|
||||
@include media-breakpoint-up(lg) {
|
||||
height: $body-header-lg-height;
|
||||
transition: height 500ms ease, box-shadow 250ms ease;
|
||||
padding-top: 0;
|
||||
padding-bottom: 0;
|
||||
.navbar-nav, .navbar-collapse, >.container {
|
||||
height: 100% !important;
|
||||
}
|
||||
&.scrolled {
|
||||
height: 75px;
|
||||
box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.075);
|
||||
.shop-brand-icon {
|
||||
height: 32px;
|
||||
}
|
||||
}
|
||||
.nav-link {
|
||||
padding-top: 0.25rem;
|
||||
padding-bottom: 0.25rem;
|
||||
}
|
||||
}
|
||||
.shop-brand-icon {
|
||||
height: 48px;
|
||||
transition: height 500ms ease;
|
||||
position: absolute;
|
||||
padding-top: 0.5rem;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
pointer-events: none;
|
||||
a {
|
||||
width: min-content;
|
||||
}
|
||||
img {
|
||||
height: 100%;
|
||||
width: auto;
|
||||
margin: auto;
|
||||
display: block;
|
||||
pointer-events: auto;
|
||||
}
|
||||
}
|
||||
.shop-social-icons {
|
||||
.nav-link {
|
||||
display: inline-block;
|
||||
padding-left: 0.25rem;
|
||||
padding-right: 0.25rem;
|
||||
}
|
||||
@include media-breakpoint-down(md) {
|
||||
order: 4;
|
||||
.nav-link {
|
||||
margin-left: 0.25rem;
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
}
|
||||
@include media-breakpoint-up(lg) {
|
||||
align-self: flex-end;
|
||||
}
|
||||
.cms-placeholder {
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
.shop-primary-menu {
|
||||
font-size: 125%;
|
||||
font-weight: 300;
|
||||
@include media-breakpoint-down(md) {
|
||||
order: 1;
|
||||
}
|
||||
@include media-breakpoint-up(lg) {
|
||||
font-size: 150%;
|
||||
.dropdown-toggle::after {
|
||||
font-size: initial;
|
||||
}
|
||||
}
|
||||
}
|
||||
.shop-secondary-menu {
|
||||
@include media-breakpoint-down(md) {
|
||||
order: 2;
|
||||
}
|
||||
@include media-breakpoint-up(lg) {
|
||||
align-self: flex-end;
|
||||
}
|
||||
}
|
||||
.shop-search-form {
|
||||
@include media-breakpoint-down(md) {
|
||||
order: 3;
|
||||
}
|
||||
@include media-breakpoint-up(lg) {
|
||||
margin-left: auto;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
@import "shop/css/variables";
|
||||
|
||||
// header
|
||||
$body-header-height: 50px;
|
||||
$body-header-lg-height: 90px;
|
||||
|
||||
// footer
|
||||
$body-footer-margin: 1rem;
|
||||
$body-footer-color: $white;
|
||||
$body-footer-bg: $gray-900;
|
||||
$body-footer-border: $gray-900;
|
||||
$body-footer-link-color: darken($body-footer-color, 15%);
|
||||
$body-footer-link-hover-color: $body-footer-color;
|
||||
$body-footer-link-active-color: $body-footer-color;
|
||||
@@ -0,0 +1,5 @@
|
||||
@import "variables";
|
||||
@import "font-awesome/scss/font-awesome";
|
||||
@import "shop/css/django-shop";
|
||||
@import "navbar";
|
||||
@import "footer";
|
||||
BIN
weirdlittleempire/static/weirdlittleempire/django-shop-logo.png
Normal file
BIN
weirdlittleempire/static/weirdlittleempire/django-shop-logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 10 KiB |
@@ -0,0 +1,90 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
width="453.54px"
|
||||
height="85.04px"
|
||||
viewBox="0 0 453.54 85.04"
|
||||
enable-background="new 0 0 453.54 85.04"
|
||||
xml:space="preserve"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="django-shop-logo.svg"><metadata
|
||||
id="metadata31"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs29" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="2091"
|
||||
inkscape:window-height="1115"
|
||||
id="namedview27"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.79816553"
|
||||
inkscape:cx="152.22406"
|
||||
inkscape:cy="42.52"
|
||||
inkscape:window-x="1440"
|
||||
inkscape:window-y="1"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="Layer_1" /><g
|
||||
id="g4195"
|
||||
inkscape:export-xdpi="44.479092"
|
||||
inkscape:export-ydpi="44.479092"><g
|
||||
id="g4189"><path
|
||||
id="path5"
|
||||
d="m 245.27,46.11 c 6.24,4.24 10.48,5.681 16.24,5.681 5.6,0 8.801,-2 8.801,-5.44 0,-3.2 -1.439,-4.56 -9.6,-8.64 -6.641,-3.28 -9.121,-4.96 -11.441,-7.521 -2.32,-2.48 -3.52,-5.92 -3.52,-9.76 0,-10.4 8.24,-16.96 21.439,-16.96 5.762,0 11.041,1.2 15.762,3.6 l 0,12.24 c -4.961,-3.52 -9.281,-4.96 -14.801,-4.96 -5.84,0 -9.201,1.92 -9.201,5.28 0,2.24 1.602,3.92 5.201,5.6 l 4.801,2.32 c 5.76,2.64 8.479,4.4 10.959,6.88 2.881,2.88 4.4,6.8 4.4,11.281 0,10.72 -8.48,17.359 -22,17.359 -6.08,0 -11.761,-1.279 -17.041,-3.84 l 0,-13.12 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#43b68b" /><path
|
||||
id="path7"
|
||||
d="m 289.59,4.51 13.359,0 0,22.32 22.801,0 0,-22.32 13.361,0 0,57.121 -13.361,0 0,-23.521 -22.801,0 0,23.521 -13.359,0 0,-57.121 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#43b68b" /><path
|
||||
id="path9"
|
||||
d="m 373.67,3.39 c 17.279,0 28.16,11.44 28.16,29.44 0,18.48 -11.201,30.081 -29.041,30.081 -17.52,0 -28.4,-11.2 -28.4,-29.121 0,-18.56 11.359,-30.4 29.281,-30.4 z m -0.561,48.241 c 9.201,0 14.721,-6.961 14.721,-18.721 0,-11.68 -5.361,-18.641 -14.48,-18.641 -9.361,0 -14.961,7.041 -14.961,18.721 0,11.76 5.441,18.641 14.72,18.641 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#43b68b" /><path
|
||||
id="path11"
|
||||
d="m 407.428,4.91 1.279,-0.08 c 6.08,-0.4 10.961,-0.64 15.441,-0.64 8.799,0 14.08,1.2 18.32,4.24 4.48,3.2 7.039,8.48 7.039,14.72 0,6.4 -2.879,11.92 -8,14.88 -4.24,2.48 -9.359,3.6 -16.561,3.6 -1.119,0 -2.24,-0.08 -4.16,-0.16 l 0,20.161 -13.359,0 0,-56.721 z m 13.359,26 c 1.361,0.24 2.24,0.24 3.281,0.24 8.721,0 12.24,-2.4 12.24,-8.161 0,-5.6 -3.52,-8.32 -10.561,-8.32 -1.359,0 -2.561,0 -4.961,0.4 l 0,15.841 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#43b68b" /></g><g
|
||||
id="g13"><path
|
||||
id="path15"
|
||||
d="m 31.092,3.071 12.401,0 0,57.404 c -6.361,1.207 -11.033,1.69 -16.107,1.69 -15.138,0 -23.032,-6.847 -23.032,-19.973 0,-12.643 8.378,-20.857 21.342,-20.857 2.013,0 3.543,0.16 5.396,0.646 l 0,-18.91 z m 0,28.895 c -1.45,-0.481 -2.657,-0.642 -4.188,-0.642 -6.282,0 -9.906,3.865 -9.906,10.63 0,6.604 3.463,10.226 9.826,10.226 1.369,0 2.495,-0.08 4.268,-0.32 l 0,-19.894 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#082e20" /><path
|
||||
id="path17"
|
||||
d="m 63.223,22.225 0,28.749 c 0,9.904 -0.725,14.656 -2.9,18.762 -2.012,3.946 -4.67,6.443 -10.146,9.181 L 38.661,73.44 c 5.477,-2.576 8.134,-4.831 9.824,-8.293 1.772,-3.543 2.335,-7.65 2.335,-18.443 l 0,-24.479 12.403,0 z M 50.82,3.137 l 12.403,0 0,12.726 -12.403,0 0,-12.726 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#082e20" /><path
|
||||
id="path19"
|
||||
d="m 70.712,25.042 c 5.478,-2.576 10.711,-3.706 16.431,-3.706 6.36,0 10.548,1.692 12.4,4.994 1.047,1.852 1.369,4.268 1.369,9.422 l 0,25.206 c -5.558,0.806 -12.562,1.37 -17.715,1.37 -10.389,0 -15.061,-3.625 -15.061,-11.678 0,-8.696 6.2,-12.723 21.421,-14.012 l 0,-2.737 c 0,-2.255 -1.126,-3.062 -4.268,-3.062 -4.59,0 -9.744,1.29 -14.578,3.785 l 0,-9.582 z m 19.409,19.729 c -8.212,0.806 -10.872,2.096 -10.872,5.313 0,2.419 1.53,3.546 4.913,3.546 1.853,0 3.543,-0.16 5.959,-0.564 l 0,-8.295 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#082e20" /><path
|
||||
id="path21"
|
||||
d="m 106.952,24.155 c 7.329,-1.931 13.368,-2.819 19.489,-2.819 6.362,0 10.951,1.45 13.69,4.269 2.576,2.657 3.382,5.557 3.382,11.758 l 0,24.319 -12.402,0 0,-23.835 c 0,-4.751 -1.611,-6.523 -6.038,-6.523 -1.692,0 -3.221,0.161 -5.719,0.884 l 0,29.475 -12.402,0 0,-37.528 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#082e20" /><path
|
||||
id="path23"
|
||||
d="m 148.334,68.446 c 4.351,2.256 8.698,3.303 13.288,3.303 8.135,0 11.597,-3.303 11.597,-11.194 0,-0.079 0,-0.159 0,-0.241 -2.415,1.209 -4.83,1.69 -8.052,1.69 -10.872,0 -17.798,-7.166 -17.798,-18.521 0,-14.095 10.227,-22.066 28.347,-22.066 5.314,0 10.226,0.565 16.187,1.774 l -4.246,8.945 c -3.303,-0.646 -0.264,-0.088 -2.759,-0.33 l 0,1.291 0.16,5.233 0.081,6.765 c 0.081,1.692 0.081,3.385 0.162,5.073 0,1.531 0,2.256 0,3.385 0,10.63 -0.886,15.623 -3.545,19.729 -3.865,6.04 -10.549,9.02 -20.05,9.02 -4.833,0 -9.02,-0.727 -13.371,-2.416 l 0,-11.44 z m 24.644,-37.04 c -0.163,0 -0.322,0 -0.404,0 l -0.885,0 c -2.417,-0.082 -5.234,0.56 -7.166,1.769 -2.982,1.692 -4.51,4.753 -4.51,9.099 0,6.204 3.059,9.746 8.536,9.746 1.689,0 3.06,-0.322 4.67,-0.805 l 0,-0.888 0,-3.38 c 0,-1.45 -0.08,-3.062 -0.08,-4.754 l -0.08,-5.715 -0.081,-4.107 0,-0.965 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#082e20" /><path
|
||||
id="path25"
|
||||
d="m 211.155,21.177 c 12.399,0 19.971,7.812 19.971,20.455 0,12.966 -7.892,21.099 -20.456,21.099 -12.401,0 -20.052,-7.811 -20.052,-20.376 0,-13.047 7.893,-21.178 20.537,-21.178 z m -0.243,31.565 c 4.751,0 7.569,-3.945 7.569,-10.788 0,-6.766 -2.737,-10.792 -7.487,-10.792 -4.911,0 -7.732,3.947 -7.732,10.792 0,6.843 2.821,10.788 7.65,10.788 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#082e20" /></g></g></svg>
|
||||
|
After Width: | Height: | Size: 6.7 KiB |
695
weirdlittleempire/static/weirdlittleempire/strides/checkout.json
Normal file
695
weirdlittleempire/static/weirdlittleempire/strides/checkout.json
Normal file
@@ -0,0 +1,695 @@
|
||||
{
|
||||
"plugins":[
|
||||
[
|
||||
"BootstrapContainerPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"media_queries":{
|
||||
"xs":[
|
||||
"(max-width: 768px)"
|
||||
],
|
||||
"lg":[
|
||||
"(min-width: 1200px)"
|
||||
],
|
||||
"sm":[
|
||||
"(min-width: 768px)",
|
||||
"(max-width: 992px)"
|
||||
],
|
||||
"md":[
|
||||
"(min-width: 992px)",
|
||||
"(max-width: 1200px)"
|
||||
]
|
||||
},
|
||||
"container_max_widths":{
|
||||
"xs":750,
|
||||
"lg":1170,
|
||||
"sm":750,
|
||||
"md":970
|
||||
},
|
||||
"extra_inline_styles:Paddings":{
|
||||
"padding-top":"",
|
||||
"padding-bottom":"30px"
|
||||
},
|
||||
"fluid":"",
|
||||
"breakpoints":[
|
||||
"xs",
|
||||
"sm",
|
||||
"md",
|
||||
"lg"
|
||||
]
|
||||
},
|
||||
"pk":14488
|
||||
},
|
||||
[
|
||||
[
|
||||
"SegmentPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"open_tag":"if",
|
||||
"condition":"customer.is_recognized"
|
||||
},
|
||||
"pk":14489
|
||||
},
|
||||
[
|
||||
[
|
||||
"BootstrapRowPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"extra_css_classes":[
|
||||
"foo",
|
||||
"bar",
|
||||
"cap"
|
||||
],
|
||||
"hide_plugin":"",
|
||||
"extra_inline_styles:Margins":{
|
||||
"margin-top":"",
|
||||
"margin-bottom":"20px"
|
||||
}
|
||||
},
|
||||
"pk":14490
|
||||
},
|
||||
[
|
||||
[
|
||||
"BootstrapColumnPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"sm-responsive-utils":"",
|
||||
"xs-responsive-utils":"",
|
||||
"md-column-offset":"",
|
||||
"sm-column-width":"col-sm-10",
|
||||
"md-responsive-utils":"",
|
||||
"xs-column-offset":"",
|
||||
"sm-column-offset":"col-sm-offset-1",
|
||||
"sm-column-ordering":"",
|
||||
"md-column-ordering":"",
|
||||
"lg-column-ordering":"",
|
||||
"lg-column-offset":"col-lg-offset-2",
|
||||
"md-column-width":"",
|
||||
"xs-column-width":"col-xs-12",
|
||||
"lg-responsive-utils":"",
|
||||
"container_max_widths":{
|
||||
"xs":720.0,
|
||||
"lg":750.0,
|
||||
"sm":595.0,
|
||||
"md":778.33
|
||||
},
|
||||
"lg-column-width":"col-lg-8",
|
||||
"xs-column-ordering":""
|
||||
},
|
||||
"pk":14491
|
||||
},
|
||||
[
|
||||
[
|
||||
"ProcessBarPlugin",
|
||||
{
|
||||
"glossary":{},
|
||||
"pk":14492
|
||||
},
|
||||
[
|
||||
[
|
||||
"ProcessStepPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"hide_plugin":"",
|
||||
"step_title":"Addresses"
|
||||
},
|
||||
"pk":14500
|
||||
},
|
||||
[
|
||||
[
|
||||
"CheckoutAddressPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"allow_use_primary":"",
|
||||
"allow_multiple":"on",
|
||||
"address_form":"shipping",
|
||||
"render_type":"form",
|
||||
"hide_plugin":"",
|
||||
"headline_legend":"on"
|
||||
},
|
||||
"pk":14503
|
||||
},
|
||||
[]
|
||||
],
|
||||
[
|
||||
"CheckoutAddressPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"allow_use_primary":"on",
|
||||
"allow_multiple":"on",
|
||||
"address_form":"billing",
|
||||
"render_type":"form",
|
||||
"hide_plugin":"",
|
||||
"headline_legend":"on"
|
||||
},
|
||||
"pk":14504
|
||||
},
|
||||
[]
|
||||
],
|
||||
[
|
||||
"RequiredFormFieldsPlugin",
|
||||
{
|
||||
"glossary":{},
|
||||
"pk":14502
|
||||
},
|
||||
[]
|
||||
],
|
||||
[
|
||||
"ProcessNextStepPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"icon_align":"icon-right",
|
||||
"symbol":"right-open",
|
||||
"button_size":"",
|
||||
"quick_float":"pull-right",
|
||||
"button_options":[],
|
||||
"icon_font":"4",
|
||||
"link_content":"Next",
|
||||
"button_type":"btn-success",
|
||||
"hide_plugin":""
|
||||
},
|
||||
"pk":14501
|
||||
},
|
||||
[]
|
||||
]
|
||||
]
|
||||
],
|
||||
[
|
||||
"ProcessStepPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"step_title":"Customer"
|
||||
},
|
||||
"pk":14493
|
||||
},
|
||||
[
|
||||
[
|
||||
"SegmentPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"open_tag":"if",
|
||||
"condition":"customer.is_registered"
|
||||
},
|
||||
"pk":14494
|
||||
},
|
||||
[
|
||||
[
|
||||
"CustomerFormPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"render_type":"form"
|
||||
},
|
||||
"pk":14495
|
||||
},
|
||||
[]
|
||||
]
|
||||
]
|
||||
],
|
||||
[
|
||||
"SegmentPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"open_tag":"else",
|
||||
"condition":""
|
||||
},
|
||||
"pk":14496
|
||||
},
|
||||
[
|
||||
[
|
||||
"GuestFormPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"render_type":"form"
|
||||
},
|
||||
"pk":14497
|
||||
},
|
||||
[]
|
||||
]
|
||||
]
|
||||
],
|
||||
[
|
||||
"RequiredFormFieldsPlugin",
|
||||
{
|
||||
"glossary":{},
|
||||
"pk":14499
|
||||
},
|
||||
[]
|
||||
],
|
||||
[
|
||||
"ProcessNextStepPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"icon_align":"icon-right",
|
||||
"symbol":"right-open",
|
||||
"button_size":"",
|
||||
"quick_float":"pull-right",
|
||||
"button_options":[],
|
||||
"icon_font":"4",
|
||||
"link_content":"Next",
|
||||
"button_type":"btn-success",
|
||||
"hide_plugin":""
|
||||
},
|
||||
"pk":14498
|
||||
},
|
||||
[]
|
||||
]
|
||||
]
|
||||
],
|
||||
[
|
||||
"ProcessStepPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"hide_plugin":"",
|
||||
"step_title":"Payment"
|
||||
},
|
||||
"pk":14505
|
||||
},
|
||||
[
|
||||
[
|
||||
"HeadingPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"content":"Bezahlen und Versenden",
|
||||
"element_id":"",
|
||||
"tag_type":"h3"
|
||||
},
|
||||
"pk":14512
|
||||
},
|
||||
[]
|
||||
],
|
||||
[
|
||||
"ShopCartPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"render_type":"summary"
|
||||
},
|
||||
"pk":14511
|
||||
},
|
||||
[]
|
||||
],
|
||||
[
|
||||
"PaymentMethodFormPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"render_type":"form"
|
||||
},
|
||||
"pk":14506
|
||||
},
|
||||
[]
|
||||
],
|
||||
[
|
||||
"ShippingMethodFormPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"render_type":"form"
|
||||
},
|
||||
"pk":14507
|
||||
},
|
||||
[]
|
||||
],
|
||||
[
|
||||
"ExtraAnnotationFormPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"render_type":"form"
|
||||
},
|
||||
"pk":14508
|
||||
},
|
||||
[]
|
||||
],
|
||||
[
|
||||
"RequiredFormFieldsPlugin",
|
||||
{
|
||||
"glossary":{},
|
||||
"pk":14509
|
||||
},
|
||||
[]
|
||||
],
|
||||
[
|
||||
"ProcessNextStepPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"icon_align":"icon-right",
|
||||
"symbol":"right-open",
|
||||
"button_size":"",
|
||||
"quick_float":"pull-right",
|
||||
"button_options":[],
|
||||
"icon_font":"4",
|
||||
"link_content":"Next",
|
||||
"button_type":"btn-success",
|
||||
"hide_plugin":""
|
||||
},
|
||||
"pk":14510
|
||||
},
|
||||
[]
|
||||
]
|
||||
]
|
||||
],
|
||||
[
|
||||
"ProcessStepPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"hide_plugin":"",
|
||||
"step_title":"Summary"
|
||||
},
|
||||
"pk":14513
|
||||
},
|
||||
[
|
||||
[
|
||||
"HeadingPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"content":"Summary of your Order",
|
||||
"element_id":"",
|
||||
"tag_type":"h3",
|
||||
"hide_plugin":"",
|
||||
"extra_inline_styles:Margins":{
|
||||
"margin-right":"",
|
||||
"margin-top":"",
|
||||
"margin-left":"",
|
||||
"margin-bottom":""
|
||||
}
|
||||
},
|
||||
"pk":14518
|
||||
},
|
||||
[]
|
||||
],
|
||||
[
|
||||
"ShopCartPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"render_type":"static"
|
||||
},
|
||||
"pk":14514
|
||||
},
|
||||
[]
|
||||
],
|
||||
[
|
||||
"SegmentPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"open_tag":"if",
|
||||
"condition":"customer.is_registered"
|
||||
},
|
||||
"pk":14519
|
||||
},
|
||||
[
|
||||
[
|
||||
"CustomerFormPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"render_type":"summary"
|
||||
},
|
||||
"pk":14520
|
||||
},
|
||||
[]
|
||||
]
|
||||
]
|
||||
],
|
||||
[
|
||||
"SegmentPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"open_tag":"else",
|
||||
"condition":""
|
||||
},
|
||||
"pk":14521
|
||||
},
|
||||
[
|
||||
[
|
||||
"GuestFormPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"render_type":"summary"
|
||||
},
|
||||
"pk":14522
|
||||
},
|
||||
[]
|
||||
]
|
||||
]
|
||||
],
|
||||
[
|
||||
"PaymentMethodFormPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"render_type":"summary"
|
||||
},
|
||||
"pk":14515
|
||||
},
|
||||
[]
|
||||
],
|
||||
[
|
||||
"ShippingMethodFormPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"render_type":"summary"
|
||||
},
|
||||
"pk":14516
|
||||
},
|
||||
[]
|
||||
],
|
||||
[
|
||||
"ExtraAnnotationFormPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"render_type":"summary"
|
||||
},
|
||||
"pk":14517
|
||||
},
|
||||
[]
|
||||
],
|
||||
[
|
||||
"AcceptConditionPlugin",
|
||||
{
|
||||
"body":"<p>I have read the <cms-plugin id=\"14526\" alt=\"Link - terms and conditions \" title=\"Link - terms and conditions\"></cms-plugin> and agree with them.</p>",
|
||||
"pk":14525
|
||||
},
|
||||
[
|
||||
[
|
||||
"TextLinkPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"link_content":"terms and conditions",
|
||||
"link":{
|
||||
"pk":15,
|
||||
"model":"cms.Page",
|
||||
"type":"cmspage",
|
||||
"section":""
|
||||
},
|
||||
"target":"",
|
||||
"title":""
|
||||
},
|
||||
"pk":14526
|
||||
},
|
||||
[]
|
||||
]
|
||||
]
|
||||
],
|
||||
[
|
||||
"RequiredFormFieldsPlugin",
|
||||
{
|
||||
"glossary":{},
|
||||
"pk":14523
|
||||
},
|
||||
[]
|
||||
],
|
||||
[
|
||||
"ShopProceedButton",
|
||||
{
|
||||
"glossary":{
|
||||
"icon_align":"icon-right",
|
||||
"symbol":"right-hand",
|
||||
"button_size":"btn-lg",
|
||||
"quick_float":"",
|
||||
"button_options":[],
|
||||
"icon_font":"4",
|
||||
"link_content":"Purchase Now",
|
||||
"link":{
|
||||
"type":"PURCHASE_NOW"
|
||||
},
|
||||
"button_type":"btn-success",
|
||||
"hide_plugin":""
|
||||
},
|
||||
"pk":14524
|
||||
},
|
||||
[]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
],
|
||||
[
|
||||
"SegmentPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"open_tag":"else",
|
||||
"condition":""
|
||||
},
|
||||
"pk":14527
|
||||
},
|
||||
[
|
||||
[
|
||||
"BootstrapRowPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"extra_inline_styles:Paddings":{
|
||||
"padding-right":"",
|
||||
"padding-left":""
|
||||
},
|
||||
"extra_inline_styles:Margins":{
|
||||
"margin-top":"",
|
||||
"margin-bottom":"20px"
|
||||
}
|
||||
},
|
||||
"pk":14528
|
||||
},
|
||||
[
|
||||
[
|
||||
"BootstrapColumnPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"sm-responsive-utils":"",
|
||||
"xs-responsive-utils":"",
|
||||
"lg-column-offset":"",
|
||||
"sm-column-width":"col-sm-4",
|
||||
"md-responsive-utils":"",
|
||||
"xs-column-offset":"",
|
||||
"md-column-offset":"",
|
||||
"sm-column-ordering":"",
|
||||
"sm-column-offset":"",
|
||||
"lg-column-ordering":"",
|
||||
"lg-column-width":"",
|
||||
"xs-column-ordering":"",
|
||||
"xs-column-width":"col-xs-12",
|
||||
"lg-responsive-utils":"",
|
||||
"container_max_widths":{
|
||||
"xs":720.0,
|
||||
"lg":360.0,
|
||||
"sm":220.0,
|
||||
"md":293.33
|
||||
},
|
||||
"md-column-width":"",
|
||||
"md-column-ordering":""
|
||||
},
|
||||
"pk":14529
|
||||
},
|
||||
[
|
||||
[
|
||||
"ShopAuthenticationPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"form_type":"login-reset",
|
||||
"link":{
|
||||
"type":"RELOAD_PAGE"
|
||||
}
|
||||
},
|
||||
"pk":14530
|
||||
},
|
||||
[]
|
||||
]
|
||||
]
|
||||
],
|
||||
[
|
||||
"BootstrapColumnPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"sm-responsive-utils":"",
|
||||
"xs-responsive-utils":"",
|
||||
"md-column-offset":"",
|
||||
"sm-column-width":"col-sm-4",
|
||||
"md-responsive-utils":"",
|
||||
"xs-column-offset":"",
|
||||
"sm-column-offset":"",
|
||||
"sm-column-ordering":"",
|
||||
"md-column-ordering":"",
|
||||
"lg-column-ordering":"",
|
||||
"lg-column-offset":"",
|
||||
"md-column-width":"",
|
||||
"xs-column-width":"col-xs-12",
|
||||
"lg-responsive-utils":"",
|
||||
"container_max_widths":{
|
||||
"xs":720.0,
|
||||
"lg":360.0,
|
||||
"sm":220.0,
|
||||
"md":293.33
|
||||
},
|
||||
"lg-column-width":"",
|
||||
"xs-column-ordering":""
|
||||
},
|
||||
"pk":14531
|
||||
},
|
||||
[
|
||||
[
|
||||
"ShopAuthenticationPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"form_type":"register-user",
|
||||
"link":{
|
||||
"type":"RELOAD_PAGE"
|
||||
}
|
||||
},
|
||||
"pk":14532
|
||||
},
|
||||
[]
|
||||
]
|
||||
]
|
||||
],
|
||||
[
|
||||
"BootstrapColumnPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"sm-responsive-utils":"",
|
||||
"xs-responsive-utils":"",
|
||||
"md-column-offset":"",
|
||||
"sm-column-width":"col-sm-4",
|
||||
"md-responsive-utils":"",
|
||||
"xs-column-offset":"",
|
||||
"sm-column-offset":"",
|
||||
"sm-column-ordering":"",
|
||||
"md-column-ordering":"",
|
||||
"lg-column-ordering":"",
|
||||
"lg-column-offset":"",
|
||||
"md-column-width":"",
|
||||
"xs-column-width":"col-xs-12",
|
||||
"lg-responsive-utils":"",
|
||||
"container_max_widths":{
|
||||
"xs":720.0,
|
||||
"lg":360.0,
|
||||
"sm":220.0,
|
||||
"md":293.33
|
||||
},
|
||||
"lg-column-width":"",
|
||||
"xs-column-ordering":""
|
||||
},
|
||||
"pk":14533
|
||||
},
|
||||
[
|
||||
[
|
||||
"ShopAuthenticationPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"form_type":"continue-as-guest",
|
||||
"link":{
|
||||
"type":"RELOAD_PAGE"
|
||||
}
|
||||
},
|
||||
"pk":14534
|
||||
},
|
||||
[]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
317
weirdlittleempire/static/weirdlittleempire/strides/footer.json
Normal file
317
weirdlittleempire/static/weirdlittleempire/strides/footer.json
Normal file
@@ -0,0 +1,317 @@
|
||||
{
|
||||
"plugins":[
|
||||
[
|
||||
"BootstrapContainerPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"media_queries":{
|
||||
"xs":[
|
||||
"(max-width: 768px)"
|
||||
],
|
||||
"lg":[
|
||||
"(min-width: 1200px)"
|
||||
],
|
||||
"sm":[
|
||||
"(min-width: 768px)",
|
||||
"(max-width: 992px)"
|
||||
],
|
||||
"md":[
|
||||
"(min-width: 992px)",
|
||||
"(max-width: 1200px)"
|
||||
]
|
||||
},
|
||||
"container_max_widths":{
|
||||
"xs":750,
|
||||
"lg":1170,
|
||||
"sm":750,
|
||||
"md":970
|
||||
},
|
||||
"hide_plugin":"",
|
||||
"fluid":"",
|
||||
"breakpoints":[
|
||||
"xs",
|
||||
"sm",
|
||||
"md",
|
||||
"lg"
|
||||
]
|
||||
},
|
||||
"pk":9086
|
||||
},
|
||||
[
|
||||
[
|
||||
"BootstrapRowPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"extra_css_classes":[],
|
||||
"hide_plugin":"",
|
||||
"extra_inline_styles:Margins":{
|
||||
"margin-top":"",
|
||||
"margin-bottom":""
|
||||
}
|
||||
},
|
||||
"pk":9087
|
||||
},
|
||||
[
|
||||
[
|
||||
"BootstrapColumnPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"container_max_widths":{
|
||||
"xs":157.5,
|
||||
"lg":262.5,
|
||||
"sm":157.5,
|
||||
"md":212.5
|
||||
},
|
||||
"xs-column-width":"col-xs-3"
|
||||
},
|
||||
"pk":9088
|
||||
},
|
||||
[
|
||||
[
|
||||
"HeadingPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"content":"ABOUT US",
|
||||
"element_id":"",
|
||||
"extra_inline_styles:Margins":{
|
||||
"margin-top":"",
|
||||
"margin-bottom":"",
|
||||
"margin-left":"",
|
||||
"margin-right":""
|
||||
},
|
||||
"hide_plugin":"",
|
||||
"tag_type":"h4"
|
||||
},
|
||||
"pk":9089
|
||||
},
|
||||
[]
|
||||
],
|
||||
[
|
||||
"BootstrapSecondaryMenuPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"limit":"3",
|
||||
"page_id":"shop-about",
|
||||
"hide_plugin":"",
|
||||
"render_template":"cascade/bootstrap3/secmenu-unstyled-list.html",
|
||||
"offset":"0"
|
||||
},
|
||||
"pk":9090
|
||||
},
|
||||
[]
|
||||
]
|
||||
]
|
||||
],
|
||||
[
|
||||
"BootstrapColumnPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"container_max_widths":{
|
||||
"xs":157.5,
|
||||
"lg":262.5,
|
||||
"sm":157.5,
|
||||
"md":212.5
|
||||
},
|
||||
"xs-column-width":"col-xs-3"
|
||||
},
|
||||
"pk":9091
|
||||
},
|
||||
[
|
||||
[
|
||||
"HeadingPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"content":"HELP & CONTACT",
|
||||
"element_id":"",
|
||||
"extra_inline_styles:Margins":{
|
||||
"margin-top":"",
|
||||
"margin-bottom":"",
|
||||
"margin-left":"",
|
||||
"margin-right":""
|
||||
},
|
||||
"hide_plugin":"",
|
||||
"tag_type":"h4"
|
||||
},
|
||||
"pk":9092
|
||||
},
|
||||
[]
|
||||
],
|
||||
[
|
||||
"BootstrapSecondaryMenuPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"limit":"100",
|
||||
"page_id":"shop-contact",
|
||||
"hide_plugin":"",
|
||||
"render_template":"cascade/bootstrap3/secmenu-unstyled-list.html",
|
||||
"offset":"0"
|
||||
},
|
||||
"pk":9093
|
||||
},
|
||||
[]
|
||||
]
|
||||
]
|
||||
],
|
||||
[
|
||||
"BootstrapColumnPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"container_max_widths":{
|
||||
"xs":157.5,
|
||||
"lg":262.5,
|
||||
"sm":157.5,
|
||||
"md":212.5
|
||||
},
|
||||
"xs-column-width":"col-xs-3"
|
||||
},
|
||||
"pk":9094
|
||||
},
|
||||
[
|
||||
[
|
||||
"HeadingPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"content":"MORE FROM US",
|
||||
"element_id":"",
|
||||
"extra_inline_styles:Margins":{
|
||||
"margin-top":"",
|
||||
"margin-bottom":"",
|
||||
"margin-left":"",
|
||||
"margin-right":""
|
||||
},
|
||||
"hide_plugin":"",
|
||||
"tag_type":"h4"
|
||||
},
|
||||
"pk":9095
|
||||
},
|
||||
[]
|
||||
],
|
||||
[
|
||||
"BootstrapSecondaryMenuPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"limit":"3",
|
||||
"page_id":"shop-more",
|
||||
"hide_plugin":"",
|
||||
"render_template":"cascade/bootstrap3/secmenu-unstyled-list.html",
|
||||
"offset":"0"
|
||||
},
|
||||
"pk":9096
|
||||
},
|
||||
[]
|
||||
]
|
||||
]
|
||||
],
|
||||
[
|
||||
"BootstrapColumnPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"container_max_widths":{
|
||||
"xs":157.5,
|
||||
"lg":262.5,
|
||||
"sm":157.5,
|
||||
"md":212.5
|
||||
},
|
||||
"xs-column-width":"col-xs-3"
|
||||
},
|
||||
"pk":9097
|
||||
},
|
||||
[
|
||||
[
|
||||
"SegmentPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"open_tag":"if",
|
||||
"condition":"user.is_anonymous"
|
||||
},
|
||||
"pk":9098
|
||||
},
|
||||
[
|
||||
[
|
||||
"HeadingPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"content":"Join Us",
|
||||
"element_id":"",
|
||||
"extra_inline_styles:Margins":{
|
||||
"margin-top":"",
|
||||
"margin-bottom":"",
|
||||
"margin-left":"",
|
||||
"margin-right":""
|
||||
},
|
||||
"hide_plugin":"",
|
||||
"tag_type":"h4"
|
||||
},
|
||||
"pk":9099
|
||||
},
|
||||
[]
|
||||
],
|
||||
[
|
||||
"BootstrapSecondaryMenuPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"page_id":"shop-membership",
|
||||
"limit":"100",
|
||||
"hide_plugin":"",
|
||||
"render_template":"cascade/bootstrap3/secmenu-unstyled-list.html",
|
||||
"offset":"0"
|
||||
},
|
||||
"pk":9100
|
||||
},
|
||||
[]
|
||||
]
|
||||
]
|
||||
],
|
||||
[
|
||||
"SegmentPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"open_tag":"else",
|
||||
"condition":""
|
||||
},
|
||||
"pk":9101
|
||||
},
|
||||
[
|
||||
[
|
||||
"HeadingPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"content":"YOUR ACCOUNT",
|
||||
"element_id":"",
|
||||
"extra_inline_styles:Margins":{
|
||||
"margin-top":"",
|
||||
"margin-bottom":"",
|
||||
"margin-left":"",
|
||||
"margin-right":""
|
||||
},
|
||||
"hide_plugin":"",
|
||||
"tag_type":"h4"
|
||||
},
|
||||
"pk":9102
|
||||
},
|
||||
[]
|
||||
],
|
||||
[
|
||||
"BootstrapSecondaryMenuPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"page_id":"shop-personal",
|
||||
"limit":"3",
|
||||
"hide_plugin":"",
|
||||
"render_template":"cascade/bootstrap3/secmenu-unstyled-list.html",
|
||||
"offset":"0"
|
||||
},
|
||||
"pk":9103
|
||||
},
|
||||
[]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
859
weirdlittleempire/static/weirdlittleempire/strides/home.json
Normal file
859
weirdlittleempire/static/weirdlittleempire/strides/home.json
Normal file
@@ -0,0 +1,859 @@
|
||||
{
|
||||
"plugins":[
|
||||
[
|
||||
"BootstrapJumbotronPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"background_width_height":{
|
||||
"width":"",
|
||||
"height":""
|
||||
},
|
||||
"background_vertical_position":"center",
|
||||
"media_queries":{
|
||||
"xs":[
|
||||
"(max-width: 768px)"
|
||||
],
|
||||
"lg":[
|
||||
"(min-width: 1200px)"
|
||||
],
|
||||
"sm":[
|
||||
"(min-width: 768px)",
|
||||
"(max-width: 992px)"
|
||||
],
|
||||
"md":[
|
||||
"(min-width: 992px)",
|
||||
"(max-width: 1200px)"
|
||||
]
|
||||
},
|
||||
"background_attachment":"fixed",
|
||||
"image":{
|
||||
"pk":184,
|
||||
"model":"filer.Image"
|
||||
},
|
||||
"background_repeat":"no-repeat",
|
||||
"hide_plugin":"",
|
||||
"fluid":true,
|
||||
"container_max_heights":{
|
||||
"xs":"100%",
|
||||
"md":"100%",
|
||||
"sm":"100%",
|
||||
"lg":"100%"
|
||||
},
|
||||
"extra_inline_styles:Paddings":{
|
||||
"padding-top":"500px",
|
||||
"padding-bottom":""
|
||||
},
|
||||
"background_size":"cover",
|
||||
"resize_options":[
|
||||
"crop",
|
||||
"subject_location",
|
||||
"high_resolution"
|
||||
],
|
||||
"container_max_widths":{
|
||||
"xs":768,
|
||||
"lg":1980,
|
||||
"sm":992,
|
||||
"md":1200
|
||||
},
|
||||
"breakpoints":[
|
||||
"xs",
|
||||
"sm",
|
||||
"md",
|
||||
"lg"
|
||||
],
|
||||
"background_color":[
|
||||
"",
|
||||
"#12308b"
|
||||
],
|
||||
"background_horizontal_position":"center"
|
||||
},
|
||||
"pk":15056
|
||||
},
|
||||
[]
|
||||
],
|
||||
[
|
||||
"BootstrapContainerPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"media_queries":{
|
||||
"xs":[
|
||||
"(max-width: 768px)"
|
||||
],
|
||||
"lg":[
|
||||
"(min-width: 1200px)"
|
||||
],
|
||||
"sm":[
|
||||
"(min-width: 768px)",
|
||||
"(max-width: 992px)"
|
||||
],
|
||||
"md":[
|
||||
"(min-width: 992px)",
|
||||
"(max-width: 1200px)"
|
||||
]
|
||||
},
|
||||
"container_max_widths":{
|
||||
"xs":750,
|
||||
"lg":1170,
|
||||
"sm":750,
|
||||
"md":970
|
||||
},
|
||||
"fluid":"",
|
||||
"breakpoints":[
|
||||
"xs",
|
||||
"sm",
|
||||
"md",
|
||||
"lg"
|
||||
]
|
||||
},
|
||||
"pk":15057
|
||||
},
|
||||
[
|
||||
[
|
||||
"BootstrapRowPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"extra_css_classes":[],
|
||||
"hide_plugin":"",
|
||||
"extra_inline_styles:Margins":{
|
||||
"margin-top":"",
|
||||
"margin-bottom":""
|
||||
}
|
||||
},
|
||||
"pk":15058
|
||||
},
|
||||
[
|
||||
[
|
||||
"BootstrapColumnPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"container_max_widths":{
|
||||
"xs":720.0,
|
||||
"lg":1140.0,
|
||||
"sm":720.0,
|
||||
"md":940.0
|
||||
},
|
||||
"xs-column-width":"col-xs-12"
|
||||
},
|
||||
"pk":15059
|
||||
},
|
||||
[
|
||||
[
|
||||
"CarouselPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"resize_options":[
|
||||
"upscale",
|
||||
"crop",
|
||||
"subject_location",
|
||||
"high_resolution"
|
||||
],
|
||||
"container_max_heights":{
|
||||
"xs":"100px",
|
||||
"md":"200px",
|
||||
"sm":"150px",
|
||||
"lg":"250px"
|
||||
},
|
||||
"interval":"5",
|
||||
"options":[
|
||||
"slide",
|
||||
"pause",
|
||||
"wrap"
|
||||
]
|
||||
},
|
||||
"pk":15060
|
||||
},
|
||||
[
|
||||
[
|
||||
"CarouselSlidePlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"resize_options":[
|
||||
"upscale",
|
||||
"crop",
|
||||
"subject_location",
|
||||
"high_resolution"
|
||||
],
|
||||
"image":{
|
||||
"pk":170,
|
||||
"model":"filer.Image"
|
||||
},
|
||||
"image_title":"",
|
||||
"alt_tag":""
|
||||
},
|
||||
"pk":15061
|
||||
},
|
||||
[
|
||||
[
|
||||
"TextPlugin",
|
||||
{
|
||||
"body":"<h3>Django under the Hood</h3>\n\n<p>Conference ending</p>",
|
||||
"pk":15062
|
||||
},
|
||||
[]
|
||||
]
|
||||
]
|
||||
],
|
||||
[
|
||||
"CarouselSlidePlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"resize_options":[
|
||||
"upscale",
|
||||
"crop",
|
||||
"subject_location",
|
||||
"high_resolution"
|
||||
],
|
||||
"image":{
|
||||
"pk":171,
|
||||
"model":"filer.Image"
|
||||
},
|
||||
"image_title":"",
|
||||
"alt_tag":""
|
||||
},
|
||||
"pk":15063
|
||||
},
|
||||
[
|
||||
[
|
||||
"TextPlugin",
|
||||
{
|
||||
"body":"<h1>Social Event</h1>\n\n<p>at <cms-plugin id=\"15065\" alt=\"Link - Pllek \" title=\"Link - Pllek\"></cms-plugin>, Amsterdam</p>",
|
||||
"pk":15064
|
||||
},
|
||||
[
|
||||
[
|
||||
"TextLinkPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"link_content":"Pllek",
|
||||
"link":{
|
||||
"url":"http://www.pllek.nl/",
|
||||
"type":"exturl"
|
||||
},
|
||||
"target":"",
|
||||
"title":""
|
||||
},
|
||||
"pk":15065
|
||||
},
|
||||
[]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
],
|
||||
[
|
||||
"CarouselSlidePlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"resize_options":[
|
||||
"upscale",
|
||||
"crop",
|
||||
"subject_location",
|
||||
"high_resolution"
|
||||
],
|
||||
"image":{
|
||||
"pk":172,
|
||||
"model":"filer.Image"
|
||||
},
|
||||
"image_title":"",
|
||||
"alt_tag":""
|
||||
},
|
||||
"pk":15066
|
||||
},
|
||||
[]
|
||||
]
|
||||
]
|
||||
],
|
||||
[
|
||||
"ShopProductGallery",
|
||||
{
|
||||
"glossary":{
|
||||
"hide_plugin":""
|
||||
},
|
||||
"pk":15067,
|
||||
"inlines":[
|
||||
{
|
||||
"product":{
|
||||
"pk":50
|
||||
}
|
||||
},
|
||||
{
|
||||
"product":{
|
||||
"pk":25
|
||||
}
|
||||
},
|
||||
{
|
||||
"product":{
|
||||
"pk":48
|
||||
}
|
||||
},
|
||||
{
|
||||
"product":{
|
||||
"pk":22
|
||||
}
|
||||
},
|
||||
{
|
||||
"product":{
|
||||
"pk":54
|
||||
}
|
||||
},
|
||||
{
|
||||
"product":{
|
||||
"pk":51
|
||||
}
|
||||
},
|
||||
{
|
||||
"product":{
|
||||
"pk":49
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
[]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
],
|
||||
[
|
||||
"BootstrapRowPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"extra_css_classes":[],
|
||||
"hide_plugin":"",
|
||||
"extra_inline_styles:Margins":{
|
||||
"margin-top":"10px",
|
||||
"margin-bottom":"20px"
|
||||
}
|
||||
},
|
||||
"pk":15068
|
||||
},
|
||||
[
|
||||
[
|
||||
"BootstrapColumnPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"container_max_widths":{
|
||||
"xs":220.0,
|
||||
"lg":360.0,
|
||||
"sm":220.0,
|
||||
"md":293.33
|
||||
},
|
||||
"xs-column-width":"col-xs-4"
|
||||
},
|
||||
"pk":15069
|
||||
},
|
||||
[
|
||||
[
|
||||
"FramedIconPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"font_size":"10em",
|
||||
"color":"#470a31",
|
||||
"background_color":[
|
||||
"",
|
||||
"#c8ffcd"
|
||||
],
|
||||
"symbol":"heart-empty-2",
|
||||
"hide_plugin":"",
|
||||
"text_align":"text-center",
|
||||
"icon_font":"4",
|
||||
"border_radius":"50%",
|
||||
"border":[
|
||||
"3px",
|
||||
"dotted",
|
||||
"#000000"
|
||||
]
|
||||
},
|
||||
"pk":15070
|
||||
},
|
||||
[]
|
||||
]
|
||||
]
|
||||
],
|
||||
[
|
||||
"BootstrapColumnPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"container_max_widths":{
|
||||
"xs":220.0,
|
||||
"lg":360.0,
|
||||
"sm":220.0,
|
||||
"md":293.33
|
||||
},
|
||||
"xs-column-width":"col-xs-4"
|
||||
},
|
||||
"pk":15071
|
||||
},
|
||||
[
|
||||
[
|
||||
"FramedIconPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"font_size":"10em",
|
||||
"color":"#470a31",
|
||||
"background_color":[
|
||||
"",
|
||||
"#c8ffcd"
|
||||
],
|
||||
"symbol":"linux",
|
||||
"hide_plugin":"",
|
||||
"text_align":"text-center",
|
||||
"icon_font":"4",
|
||||
"border_radius":"50%",
|
||||
"border":[
|
||||
"3px",
|
||||
"solid",
|
||||
"#000000"
|
||||
]
|
||||
},
|
||||
"pk":15072,
|
||||
"shared_glossary":"HeadIcon"
|
||||
},
|
||||
[]
|
||||
]
|
||||
]
|
||||
],
|
||||
[
|
||||
"BootstrapColumnPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"container_max_widths":{
|
||||
"xs":220.0,
|
||||
"lg":360.0,
|
||||
"sm":220.0,
|
||||
"md":293.33
|
||||
},
|
||||
"xs-column-width":"col-xs-4"
|
||||
},
|
||||
"pk":15073
|
||||
},
|
||||
[
|
||||
[
|
||||
"FramedIconPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"font_size":"10em",
|
||||
"color":"#470a31",
|
||||
"background_color":[
|
||||
"",
|
||||
"#c8ffcd"
|
||||
],
|
||||
"symbol":"windows",
|
||||
"hide_plugin":"",
|
||||
"text_align":"text-center",
|
||||
"icon_font":"4",
|
||||
"border_radius":"50%",
|
||||
"border":[
|
||||
"3px",
|
||||
"solid",
|
||||
"#000000"
|
||||
]
|
||||
},
|
||||
"pk":15074,
|
||||
"shared_glossary":"HeadIcon"
|
||||
},
|
||||
[]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
],
|
||||
[
|
||||
"BootstrapRowPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"extra_css_classes":[],
|
||||
"hide_plugin":"",
|
||||
"extra_inline_styles:Margins":{
|
||||
"margin-top":"",
|
||||
"margin-bottom":"30px"
|
||||
}
|
||||
},
|
||||
"pk":15075
|
||||
},
|
||||
[
|
||||
[
|
||||
"BootstrapColumnPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"sm-responsive-utils":"",
|
||||
"xs-responsive-utils":"",
|
||||
"md-column-offset":"",
|
||||
"sm-column-width":"col-sm-6",
|
||||
"md-responsive-utils":"",
|
||||
"xs-column-offset":"",
|
||||
"sm-column-offset":"",
|
||||
"sm-column-ordering":"",
|
||||
"md-column-ordering":"",
|
||||
"lg-column-ordering":"",
|
||||
"lg-column-offset":"",
|
||||
"lg-column-width":"",
|
||||
"xs-column-width":"col-xs-12",
|
||||
"lg-responsive-utils":"",
|
||||
"container_max_widths":{
|
||||
"xs":720.0,
|
||||
"lg":555.0,
|
||||
"sm":345.0,
|
||||
"md":455.0
|
||||
},
|
||||
"md-column-width":"",
|
||||
"xs-column-ordering":""
|
||||
},
|
||||
"pk":15076
|
||||
},
|
||||
[
|
||||
[
|
||||
"BootstrapPanelPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"heading_size":"",
|
||||
"panel_type":"panel-warning",
|
||||
"heading":"Panel Heading",
|
||||
"hide_plugin":"",
|
||||
"footer":"Panel Footer"
|
||||
},
|
||||
"pk":15077
|
||||
},
|
||||
[
|
||||
[
|
||||
"LeafletPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"hide_plugin":"",
|
||||
"map_position":{
|
||||
"lat":47.944636605532914,
|
||||
"lng":12.570934295654299,
|
||||
"zoom":12
|
||||
},
|
||||
"render_template":"cascade/plugins/googlemap.html",
|
||||
"map_height":"400px",
|
||||
"map_width":"100%"
|
||||
},
|
||||
"pk":15078,
|
||||
"inlines":[
|
||||
{
|
||||
"position":{
|
||||
"lat":47.92554522341879,
|
||||
"lng":12.618141174316406
|
||||
},
|
||||
"popup_text":null,
|
||||
"title":"Marker",
|
||||
"marker_width":"",
|
||||
"marker_anchor":{
|
||||
"top":"",
|
||||
"left":""
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
[]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
],
|
||||
[
|
||||
"BootstrapColumnPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"sm-responsive-utils":"",
|
||||
"xs-responsive-utils":"",
|
||||
"md-column-offset":"",
|
||||
"sm-column-width":"col-sm-6",
|
||||
"md-responsive-utils":"",
|
||||
"xs-column-offset":"",
|
||||
"sm-column-offset":"",
|
||||
"sm-column-ordering":"",
|
||||
"md-column-ordering":"",
|
||||
"lg-column-ordering":"",
|
||||
"lg-column-offset":"",
|
||||
"md-column-width":"",
|
||||
"xs-column-width":"col-xs-12",
|
||||
"lg-responsive-utils":"",
|
||||
"container_max_widths":{
|
||||
"xs":720.0,
|
||||
"lg":555.0,
|
||||
"sm":345.0,
|
||||
"md":455.0
|
||||
},
|
||||
"lg-column-width":"",
|
||||
"xs-column-ordering":""
|
||||
},
|
||||
"pk":15079
|
||||
},
|
||||
[
|
||||
[
|
||||
"BootstrapAccordionPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"hide_plugin":"",
|
||||
"close_others":"on",
|
||||
"first_is_open":"on"
|
||||
},
|
||||
"pk":15080
|
||||
},
|
||||
[
|
||||
[
|
||||
"BootstrapAccordionPanelPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"heading_size":"",
|
||||
"panel_type":"panel-success",
|
||||
"panel_title":"First"
|
||||
},
|
||||
"pk":15081
|
||||
},
|
||||
[
|
||||
[
|
||||
"TextPlugin",
|
||||
{
|
||||
"body":"<p>Nullam id dolor id nibh ultricies vehicula ut id elit. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. <cms-plugin id=\"15083\" alt=\"Link - Donec \" title=\"Link - Donec\"></cms-plugin> id elit non mi porta gravida at eget metus. Maecenas sed diam eget risus varius blandit sit amet non magna.</p>",
|
||||
"pk":15082
|
||||
},
|
||||
[
|
||||
[
|
||||
"TextLinkPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"link_content":"Donec",
|
||||
"link":{
|
||||
"pk":25,
|
||||
"model":"cms.Page",
|
||||
"type":"cmspage",
|
||||
"section":""
|
||||
},
|
||||
"target":"",
|
||||
"title":""
|
||||
},
|
||||
"pk":15083
|
||||
},
|
||||
[]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
],
|
||||
[
|
||||
"BootstrapAccordionPanelPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"heading_size":"",
|
||||
"panel_type":"panel-success",
|
||||
"panel_title":"Second"
|
||||
},
|
||||
"pk":15084
|
||||
},
|
||||
[
|
||||
[
|
||||
"BootstrapImagePlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"image_width_responsive":"",
|
||||
"target":"",
|
||||
"title":"",
|
||||
"image":{
|
||||
"pk":1,
|
||||
"model":"filer.Image"
|
||||
},
|
||||
"alt_tag":"",
|
||||
"image_width_fixed":"",
|
||||
"image_height":"",
|
||||
"link":{
|
||||
"type":"none"
|
||||
},
|
||||
"resize_options":[
|
||||
"upscale",
|
||||
"crop",
|
||||
"subject_location",
|
||||
"high_resolution"
|
||||
],
|
||||
"image_title":"Django Pony",
|
||||
"image_shapes":[
|
||||
"img-responsive"
|
||||
]
|
||||
},
|
||||
"pk":15085
|
||||
},
|
||||
[]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
],
|
||||
[
|
||||
"BootstrapTabSetPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"justified":"on"
|
||||
},
|
||||
"pk":15086
|
||||
},
|
||||
[
|
||||
[
|
||||
"BootstrapTabPanePlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"tab_title":"Left"
|
||||
},
|
||||
"pk":15087
|
||||
},
|
||||
[
|
||||
[
|
||||
"TextPlugin",
|
||||
{
|
||||
"body":"<h3>Vestibulum id ligula porta felis euismod semper</h3>\n\n<p><cms-plugin id=\"15091\" alt='Icon - fontawesome: <i class=\"icon-retweet\"></i> ' title='Icon - fontawesome: <i class=\"icon-retweet\"></i>'></cms-plugin>\u00a0Vestibulum <cms-plugin id=\"15092\" alt='Icon - fontawesome: <i class=\"icon-camera-alt\"></i> ' title='Icon - fontawesome: <i class=\"icon-camera-alt\"></i>'></cms-plugin>\u00a0id ligula porta felis euismod semper. <cms-plugin id=\"15089\" alt=\"Link - Nullam \" title=\"Link - Nullam\"></cms-plugin> id dolor id nibh ultricies vehicula ut id elit. <cms-plugin id=\"15090\" alt=\"Link - Cras \" title=\"Link - Cras\"></cms-plugin> mattis consectetur purus sit amet fermentum. <cms-plugin id=\"15093\" alt=\"Link - Donec \" title=\"Link - Donec\"></cms-plugin> sed odio dui. Integer posuere erat a ante venenatis dapibus posuere velit aliquet.</p>",
|
||||
"pk":15088
|
||||
},
|
||||
[
|
||||
[
|
||||
"TextLinkPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"link_content":"Nullam",
|
||||
"link":{
|
||||
"pk":56,
|
||||
"model":"myshop.Product",
|
||||
"type":"product"
|
||||
},
|
||||
"target":"",
|
||||
"title":""
|
||||
},
|
||||
"pk":15089
|
||||
},
|
||||
[]
|
||||
],
|
||||
[
|
||||
"TextLinkPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"link_content":"Cras",
|
||||
"link":{
|
||||
"pk":55,
|
||||
"model":"myshop.Product",
|
||||
"type":"product"
|
||||
},
|
||||
"target":"",
|
||||
"title":""
|
||||
},
|
||||
"pk":15090
|
||||
},
|
||||
[]
|
||||
],
|
||||
[
|
||||
"TextIconPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"icon_font":"4",
|
||||
"symbol":"retweet"
|
||||
},
|
||||
"pk":15091
|
||||
},
|
||||
[]
|
||||
],
|
||||
[
|
||||
"TextIconPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"icon_font":"4",
|
||||
"symbol":"camera-alt"
|
||||
},
|
||||
"pk":15092
|
||||
},
|
||||
[]
|
||||
],
|
||||
[
|
||||
"TextLinkPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"link_content":"Donec",
|
||||
"link":{
|
||||
"pk":50,
|
||||
"model":"myshop.Product",
|
||||
"type":"product"
|
||||
},
|
||||
"target":"",
|
||||
"title":""
|
||||
},
|
||||
"pk":15093
|
||||
},
|
||||
[]
|
||||
]
|
||||
]
|
||||
],
|
||||
[
|
||||
"BootstrapButtonPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"icon_align":"icon-right",
|
||||
"symbol":"angle-circled-right",
|
||||
"button_size":"btn-lg",
|
||||
"quick_float":"",
|
||||
"button_options":[],
|
||||
"icon_font":"4",
|
||||
"link_content":"Proceed",
|
||||
"link":{
|
||||
"pk":54,
|
||||
"model":"myshop.Product",
|
||||
"type":"product"
|
||||
},
|
||||
"button_type":"btn-info",
|
||||
"hide_plugin":""
|
||||
},
|
||||
"pk":15094
|
||||
},
|
||||
[]
|
||||
]
|
||||
]
|
||||
],
|
||||
[
|
||||
"BootstrapTabPanePlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"tab_title":"Right"
|
||||
},
|
||||
"pk":15095
|
||||
},
|
||||
[
|
||||
[
|
||||
"BootstrapSecondaryMenuPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"page_id":"shop-order",
|
||||
"hide_plugin":"",
|
||||
"render_template":"cascade/bootstrap3/secmenu-list-group.html"
|
||||
},
|
||||
"pk":15096
|
||||
},
|
||||
[]
|
||||
],
|
||||
[
|
||||
"HeadingPlugin",
|
||||
{
|
||||
"glossary":{
|
||||
"content":"Heading with Anchor",
|
||||
"element_id":"anchor1",
|
||||
"tag_type":"h1",
|
||||
"hide_plugin":"",
|
||||
"extra_inline_styles:Margins":{
|
||||
"margin-right":"",
|
||||
"margin-top":"10px",
|
||||
"margin-bottom":"10px",
|
||||
"margin-left":""
|
||||
}
|
||||
},
|
||||
"pk":15097
|
||||
},
|
||||
[]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user