This is a static HTML file served from the content/public directory.
URL: /public/example.html
You can access static files using these URL patterns:
/public/example.html - This HTML file/public/images/logo.png - Image files/public/documents/manual.pdf - PDF documents/public/styles/custom.css - CSS files (loaded
above)
/public/scripts/example.js - JavaScript files
(loaded below)
Organize your static files in the
content/public directory:
content/public/
├── images/
│ ├── logo.png
│ └── banner.jpg
├── documents/
│ ├── manual.pdf
│ └── guide.docx
├── styles/
│ └── custom.css
├── scripts/
│ └── example.js
├── example.html
└── README.md