diff options
author | AdaĆas Magdiel <adaiasmagdiell@gmail.com> | 2024-02-26 10:49:23 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-26 14:49:23 +0100 |
commit | d1d16b4a0de1e834c5a99c9a05a5a1026ae361a4 (patch) | |
tree | 74eaaf8300edf81eef29e4db4f39adb7fb34375f /pug.html.markdown | |
parent | d123cd4a5c6599401e20c5d4190173d75cddd520 (diff) |
chore(pug): Update include paths to use .pug extension (#4848)
Previously, the include paths in pug.html.markdown were referencing .png
files. This commit updates the paths to use .pug extensions for better
clarity and consistency.
- Updated include paths to point to .pug files
- Ensures correct file references are used throughout the project
Diffstat (limited to 'pug.html.markdown')
-rw-r--r-- | pug.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pug.html.markdown b/pug.html.markdown index 1bc49f64..9badee92 100644 --- a/pug.html.markdown +++ b/pug.html.markdown @@ -158,13 +158,13 @@ case orderStatus //- <p class="warn">Your order is pending</p> //- --INCLUDE-- -//- File path -> "includes/nav.png" +//- File path -> "includes/nav.pug" h1 Company Name nav a(href="index.html") Home a(href="about.html") About Us -//- File path -> "index.png" +//- File path -> "index.pug" html body include includes/nav.pug |