File tree Expand file tree Collapse file tree 1 file changed +22
-20
lines changed
Expand file tree Collapse file tree 1 file changed +22
-20
lines changed Original file line number Diff line number Diff line change @@ -91,25 +91,26 @@ Let's introduce the Embedded Javascript ([EJS](https://www.npmjs.com/package/ejs
9191
9292Partial files are pieces of reusable code segment that typically appear again and again throughout your project.
9393
94- The project tree structure will look as follow:
95- ```c
96- + public
97- + css
98- - style.css
99- + views
100- + partials
101- - head.ejs
102- - header.ejs
103- - footer.ejs
104- - about.ejs
105- - index.ejs
106- README.md
107- - Dockerfile
108- - index.js
109- - package-lock.json
110- - package.json
111- - README.md
112- ```
94+ The project tree structure will look as follow:
95+
96+ ```c
97+ + public
98+ + css
99+ - style.css
100+ + views
101+ + partials
102+ - head.ejs
103+ - header.ejs
104+ - footer.ejs
105+ - about.ejs
106+ - index.ejs
107+ README.md
108+ - Dockerfile
109+ - index.js
110+ - package-lock.json
111+ - package.json
112+ - README.md
113+ ```
113114
1141152 . Create partial file ` head.ejs `
115116
@@ -124,6 +125,7 @@ Partial files are pieces of reusable code segment that typically appear again an
124125```
125126
1261273. Create partial file `header.ejs` for responsive navbar display.
128+
127129```c
128130 <!-- This code contains navigation for an HTML document and uses several classes from Bootstrap for styling. -->
129131
@@ -156,10 +158,10 @@ Partial files are pieces of reusable code segment that typically appear again an
156158 </form>
157159 </div>
158160 </nav>
159-
160161```
161162
1621634 . Create a partial file ` footer.ejs `
164+
163165``` c
164166 <!-- This code contains copyright information and uses several classes from Bootstrap for styling. -->
165167 <p class=" text-center text-muted" style="
You can’t perform that action at this time.
0 commit comments