- Complete PHP CMS with Bootstrap 5 - Multi-format content support (MD/PHP/HTML) - Dynamic navigation with collapsible folders - Search functionality with snippets - WCAG compliant design - Blog content imported from Edwin Noorlander's personal blog - README with project background and credits
28 lines
596 B
Markdown
28 lines
596 B
Markdown
# Getting Started with CodePress
|
|
|
|
Learn how to set up your first CodePress website in just a few minutes.
|
|
|
|
## Installation
|
|
|
|
1. Download the CodePress files
|
|
2. Upload to your PHP-enabled server
|
|
3. Set appropriate permissions
|
|
4. Start adding content!
|
|
|
|
## Your First Page
|
|
|
|
Create a new file in the `content/` directory:
|
|
|
|
```markdown
|
|
# My First Page
|
|
|
|
This is the content of my first page.
|
|
```
|
|
|
|
Save it as `my-page.md` and visit `?page=my-page` to see it live!
|
|
|
|
## Advanced Features
|
|
|
|
- Use PHP files for dynamic content
|
|
- Organize content in subdirectories
|
|
- Customize the appearance through templates |