Static File Serving Example

This is a static HTML file served from the content/public directory.

URL: /public/example.html

Features

Usage Examples

You can access static files using these URL patterns:

File Organization

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