40 lines
1.1 KiB
Markdown
40 lines
1.1 KiB
Markdown
# Site Structure
|
|
|
|
This is a local static site. HTML pages are kept in the `website/` folder as
|
|
flat files.
|
|
|
|
## Root
|
|
|
|
- `website/index.html` - home page
|
|
- `website/about.html` - about page
|
|
- `website/contact.html` - contact page
|
|
- `website/*.html` - all other pages, archives, categories, tags, and posts
|
|
- `website/PAGES.md` - map of old folder paths to new flat filenames
|
|
- `css/` - site-level stylesheets
|
|
- `js/` - site-level scripts
|
|
- `assets/` - images, PDFs, fonts, theme files, uploads, and vendor files
|
|
- `docs/` - maintainer documentation
|
|
- `docker/` and `compose.yaml` - local static server preview
|
|
- `.forgejo/` - deployment automation
|
|
|
|
## Asset Layout
|
|
|
|
- `css/block-library.css` - WordPress block styles used by the pages
|
|
- `js/jquery.min.js` - shared jQuery dependency used by the pages
|
|
- `assets/theme/` - exported theme styles, scripts, fonts, and images
|
|
- `assets/vendor/` - exported third-party plugin/vendor assets
|
|
- `assets/uploads/` - uploaded images and PDFs used by content pages
|
|
|
|
## Local Preview
|
|
|
|
Run:
|
|
|
|
```bash
|
|
docker compose up
|
|
```
|
|
|
|
Then open:
|
|
|
|
```text
|
|
http://localhost:8080
|
|
```
|