Add documentation views and partials for error handling and content display

- Created NotFound.ejs for 404 error page with user-friendly messaging and navigation.
- Added ServerError.ejs for 500 error handling with retry and documentation links.
- Introduced Content.ejs partial for structured article content display.
- Developed Head.ejs partial for consistent head elements across pages.
- Implemented Header.ejs partial for navigation and branding.
- Created Nav.ejs partial for sidebar navigation with dynamic links.
- Added OpenSourceCommitment.ejs partial to highlight open-source contributions.
- Implemented Pagination.ejs partial for navigation between documentation sections.
This commit is contained in:
Nawaz Dhandala
2026-03-03 19:45:46 +00:00
parent 63f2a6138b
commit acaab0fb1a
246 changed files with 16 additions and 6375 deletions

View File

@@ -131,26 +131,6 @@ services:
context: .
dockerfile: ./Workflow/Dockerfile
docs:
volumes:
- ./Docs:/usr/src/app:cached
# Use node modules of the container and not host system.
# https://stackoverflow.com/questions/29181032/add-a-volume-to-docker-but-exclude-a-sub-folder
- /usr/src/app/node_modules/
- ./Common:/usr/src/Common:cached
- /usr/src/Common/node_modules/
extends:
file: ./docker-compose.base.yml
service: docs
depends_on:
<<: *common-depends-on
ports:
- '8738:9229' # Debugging port.
build:
network: host
context: .
dockerfile: ./Docs/Dockerfile
app:
volumes:
- ./App:/usr/src/app:cached