Skip to content

Commit

Permalink
Merge pull request #35 from hurricanemark/Phase2-BaselineToSeriousWorks
Browse files Browse the repository at this point in the history
Phase2 baseline to serious works
  • Loading branch information
hurricanemark authored Oct 10, 2022
2 parents afeed7f + 9368a60 commit daaba94
Showing 1 changed file with 22 additions and 20 deletions.
42 changes: 22 additions & 20 deletions public/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,25 +91,26 @@ Let's introduce the Embedded Javascript ([EJS](https://www.npmjs.com/package/ejs
Partial files are pieces of reusable code segment that typically appear again and again throughout your project.
The project tree structure will look as follow:
```c
+ public
+ css
- style.css
+ views
+ partials
- head.ejs
- header.ejs
- footer.ejs
- about.ejs
- index.ejs
README.md
- Dockerfile
- index.js
- package-lock.json
- package.json
- README.md
```
The project tree structure will look as follow:
```c
+ public
+ css
- style.css
+ views
+ partials
- head.ejs
- header.ejs
- footer.ejs
- about.ejs
- index.ejs
README.md
- Dockerfile
- index.js
- package-lock.json
- package.json
- README.md
```

2. Create partial file `head.ejs`

Expand All @@ -124,6 +125,7 @@ Partial files are pieces of reusable code segment that typically appear again an
```
3. Create partial file `header.ejs` for responsive navbar display.
```c
<!-- This code contains navigation for an HTML document and uses several classes from Bootstrap for styling. -->
Expand Down Expand Up @@ -156,10 +158,10 @@ Partial files are pieces of reusable code segment that typically appear again an
</form>
</div>
</nav>

```

4. Create a partial file `footer.ejs`

```c
<!-- This code contains copyright information and uses several classes from Bootstrap for styling. -->
<p class="text-center text-muted" style="
Expand Down

0 comments on commit daaba94

Please sign in to comment.