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
.head | |
{ | |
border: lightblue 3px solid; | |
} |
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
({ | |
block: 'b-page', | |
title: 'index', | |
head: [ | |
{ elem: 'css', url: '_index.css', ie: false}, | |
{ elem: 'css', url: '_index.ie.css', ie: true }, | |
{ block: 'i-jquery', elem: 'core'}, | |
{ elem: 'js', url:'_index.js'}, | |
], | |
content: [ |
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
block goods { | |
tag: 'ul' | |
content: { | |
var content = []; | |
this.ctx.goods.forEach(function(item){ | |
content.push({ |
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
block goods { | |
tag: 'ul' | |
content: { | |
var content = []; | |
this.ctx.goods.forEach(function(item){ | |
content.push({ |
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
({ | |
shouldDeps: [ | |
{ block: 'b-link' } | |
] | |
}) |
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
{ | |
elem: 'price', | |
content: { | |
block: 'b-link', | |
mix: [{ block: 'goods', elem: 'link' }], | |
url: item.url, | |
content: item.price | |
} | |
} |
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
block goods { | |
tag: 'ul' | |
content: { | |
var content = []; | |
this.ctx.goods.forEach(function(item){ | |
var mods = {}; |
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
.goods | |
{ | |
margin: 20px 0; | |
padding: 0; | |
list-style: none; | |
text-align: justify; | |
} | |
.goods__item |
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
.goods | |
{ | |
text-justify: distribute-all-lines; | |
} | |
.goods__item | |
{ | |
display: inline; | |
zoom: 1; |
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
/*global MAKE:true */ | |
"use strict"; | |
//process.env.YENV = 'production'; | |
MAKE.decl('Arch', { | |
blocksLevelsRegexp: /^.+?\.blocks/, |