Skip to content

Commit 9368a60

Browse files
committed
modified: public/README.md
1 parent 8fadb11 commit 9368a60

File tree

1 file changed

+22
-19
lines changed

1 file changed

+22
-19
lines changed

public/README.md

Lines changed: 22 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -91,25 +91,26 @@ Let's introduce the Embedded Javascript ([EJS](https://www.npmjs.com/package/ejs
9191
9292
Partial 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

114115
2. 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
126127
3. 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
@@ -159,6 +161,7 @@ Partial files are pieces of reusable code segment that typically appear again an
159161
```
160162

161163
4. Create a partial file `footer.ejs`
164+
162165
```c
163166
<!-- This code contains copyright information and uses several classes from Bootstrap for styling. -->
164167
<p class="text-center text-muted" style="

0 commit comments

Comments
 (0)