-
Hello!
I've been using the BEM approach for front-end web development a couple of years now (and it's just great!) but only yesterday I started to try out the BEMHTML template language. So far I like…
-
Есть страница:
/* index.bemjson.js */
```js
module.exports = {
block: 'page',
...
content: [
{
block: 'menu',
mods: {
theme: 'isla…
-
Появилась необходимость принудительно сбрасывать кэш css, js бандлов на страницах.
Смотрел в сторону добавления версий по типу: index.css?v=2 или index.css?v= new Date()
Как лучше всего реализов…
-
Есть блок с названием 'secondary-menu'. У него есть элемент 'top'. В элементе 'top' есть блок 'menu' с массивом 'items'.
Знания вынес в шаблон, прописал deps.
Но при обновлении страницы ничего не пр…
-
Доброго времени суток. Правильная ли форма с точки зрения БЭМ? Больше всего вопросов вызвало присваивание классов элементам fieldset и label
```
Title
…
-
Использую project-stub.
Есть страница index(desktop.bundles). В ней подключаются блоки через конструкцию include:
```js
var fs = require('fs'),
path = require('path'),
nodeEval = require(…
-
``` javascript
// item = { content: 'Пункт меню', level: [ { url: '#', content: 'Пункт подменю' } ] };
{
block: 'link',
mix: [{ block: 'game-nav', elem: 'link', mods: { level: true } }],
content…
-
Настроил файл .borschik
```
{
"paths": {
"./public/images": "../images/"
},
"freeze_paths" : {
"node_modules/**": "./public/images/",
"*.blocks/**": "./public/i…
-
I have this structure with cross-dependencies:
```
packages/
a/
package.json: `{ dependencies: { 'b': '*' } }`
b/
package.json: `{ devDependencies: { 'a': '*' } }`
```
## Expecte…
-
Добрый день!
Выдается такая ошибка
`Module "profit-metal": can't resolve dependence "BEMHTML"`
при подключении технологии в файле js
`modules.define('profit-metal', ['i-bem-dom','BEMHTML', 'jque…