View on GitHub

reading-notes

Javascript Templating

Javascript templating is a fast and efficient technique to render client-side view templates with Javascript by using a JSON data source.

mustach Mustache is a logic-less template syntax. It can be used for HTML, config files, source code . It works by expanding tags in a template using values provided in a hash or object.

Configure mustache-express in your server.js/app.js/index.js file:

2

Flex

The flex property sets the flexible length on flexible items.

CSS Syntax:

flex: flex-grow or flex-shrink or flex-basis;

Flex-direction

6

.container {

flex-direction: row row-reverse column column-reverse;

}

Flex wrap

7

Justify-content

3

Align-item

4

Align-content

5