Kitten            Welcome to Read: 12



EJS

In this Read: 12, I will talk about this topic:



EJS Partials
Partials come in handy when you want to reuse the same HTML across multiple views. Think of partials as functions, they make large websites easier to maintain as you don’t have to go and change a piece of text in every page it appears in. Instead, you define that reusable bundle of code in a file andinclude it wherever you need it.

In EJS, any JavaScript or non-HTML syntax you include in your templates is always surrounded by <% %> delimiters
Including a partial in EJS is quite straightforward. You use <%- include( PARTIAL_FILE ) %> where the partial file is relative to the template you use it in.
Note:
The <%- %> tags allow us to output the unescaped content onto the page (notice the -). This is important when using the include() statement since you don’t want EJS to escape your HTML characters like ‘<’, ‘>’, etc…



For further infromation please click here.






Read Title ToGo
Read: 01 SMACSS and Responsive Web Design
Read: 02 jQuery, Events, and The DOM
Read: 03 Flexbox and Templating
Read: 04 Responsive Web Design and Regular Expressions
Read: 05 Heroku Deployment
Read: 06 Node, Express, and APIs
Read: 07 APIs continued
Read: 08 SQL
Read: 09 Refactoring
Read: 10 The Call Stack and Debugging
Read: 11 EJS
Read: 12 Components
Read: 13 Update/Delete
Read: 14a DB Normalization
Read: 15 Diversity and Inclusion