Creating the Home page
On to the actual code. The first thing we will need are some HTML pages. I am trying to keep things as simple as possible so we will not use any HTML rendering engines. As a result, we will have to copy/paste some HTML into every page we have (for now). In your project folder, create three new folders called css
, scripts
, and views
. Also, create a file called index.html
and put the following code in it:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>CI Web Shop</title> <link rel="stylesheet" type="text/css" href="node_modules\bootstrap\dist\css\bootstrap.css"> <link rel="stylesheet" type="text/css" href="css\layout.css"> <link rel="stylesheet" type="text/css" href="css\utils.css"> <script src="node_modules\angular\angular.js"></script> <script src="node_modules\jquery\dist\jquery.js"></script> <script src="node_modules...