├── views ├── components │ ├── header.ejs │ └── navbar.ejs ├── result.ejs ├── index.ejs ├── loop.ejs ├── 404.ejs ├── greet.ejs └── forms.ejs ├── index.js ├── package.json ├── LICENSE ├── .gitignore ├── README.md ├── routes └── index.js └── yarn.lock /views/components/header.ejs: -------------------------------------------------------------------------------- 1 | 2 | 3 |
14 | <%= message %> 15 |
16 |14 | My first application at FB Developer Circle! 15 |
16 |Position: <%= data[i].position %>
19 |Specialixation: <%= data[i].specialization %>
20 |17 | Sorry the resource you are looking for either does not exists or has been moved to a new location. 18 |
19 |15 | Some good words for <%= to %> 16 |
17 |34 | Some good words for <%= to %> 35 |
36 |