reading-notes

Templating with Mustache

Mustache

Mustache - logic-less template syntax used for anything. Uses values from hash or object to expand tags in a template. Mustach uses no if,else or for loops, only uses tags. Mustache supoorts multiple languages and doesn’t need separate templating in server. Mustache is specification for templating language.

Example of Mustache Syntax

Mustache.render("Hello, , { name: "Sherlynn"});
returns: Hello, Sherlynn

name - is a placeholder, mustache will replace name with value from name: "Sherlynn

Guide to Flexbox (bookmarked)

parent element display: flex;
flex-direction
flex-wrap
flex-flow
justify-content
align-items
align-content
child element
order
flex-grow
flex-shrink
flex-basis
flex
align-self

Flexbox Froggy Excercise

completed steps of tutorial

Use as visual reference for using flexbox.