New features in Javascript ES2015 (ES6)
Arrow Functions
var dostuff = function( arg ) { do stuff };
can be written as
var dostuff = ( arg ) => { do stuff };
Let & Const
We nolonger use var
, we now use let
. Meanwhile, const
is used for constants that can NEVER be changed.
Templ
...Creating a child theme in Grav CMS
Creating a child theme in Grav CMS is a truly beautiful, simple process.
1.. Create a new folder: user/themes/mytheme
to house your new theme.
2.. Create a new theme YAML file: /user/themes/mytheme/mytheme.yaml
with the following content:
streams:
sche...
These HTML5 skeletons and frameworks are very helpful for starting out new web development projects.