website-htmx-rustelo-code/site/public/README.md

28 lines
761 B
Markdown
Raw Normal View History

2026-07-10 03:44:13 +01:00
# website-impl Public Assets
This directory contains static assets served directly by the web server.
## Directory Structure
```
public/
├── images/ # Static images (logos, icons, etc.)
├── scripts/ # Client-side JavaScript
├── styles/ # Public CSS files
├── documents/ # Downloadable documents
└── README.md # This file
```
## Usage
Files in this directory are served at the root URL:
- `public/logo.png``https://yoursite.com/logo.png`
- `public/styles/custom.css``https://yoursite.com/styles/custom.css`
## Guidelines
- Keep file sizes optimized for web delivery
- Use descriptive filenames
- Organize by type (images, scripts, styles, documents)
- Consider CDN deployment for production