-
Notifications
You must be signed in to change notification settings - Fork 6
HTML
Kunal Nagpal edited this page Apr 24, 2016
·
4 revisions
Just as the name suggests, HTML is NOT a programming language. It is the weapon of choice to create webpages, ranging from simple to complex and everything in between.
- https://www.codeschool.com/paths/html-css
- https://www.codeschool.com/courses/front-end-foundations
- https://www.codecademy.com/learn/web
In order to bridge the gap between the back end request data, and the front end views, we will make use of what is called a
templating engine
, to extend regular HTML, and add components like logic and iterative constructs. For GPL, we shall stick to the tried and tested EJS. Although other templating engines exist, they are either too slow (Pug aka Jade), or provide poor support for logical constructs (HBS).
General
First steps
Setup instructions
Technical information
Developer guidelines
Simulation