← Go Back
RadioDJ Wiki
How this wiki is structured

Wiki Structure

This page explains how the wiki is built behind the scenes. The structure is designed to be simple, predictable and easy to expand. Every page follows the same layout and uses the same neon‑dark styling.

Folder Layout

The wiki uses a clean and organized folder structure. Each section of the wiki has its own directory, and every page is stored as a standalone file.

/wiki/
    css/
        neon-dark.css
    pages/
        welcome.php
        overview.php
        structure.php
        (other documentation pages)
    images/
        (screenshots, diagrams)
            

Page Structure

Every page in the wiki follows the same format:

  • A PHP title variable
  • A complete HTML document
  • A link to the neon‑dark CSS file
  • A wrapper for consistent layout
  • A header with title and subtitle
  • A content block using .page and .card elements

Why This Structure Works

The structure is intentionally simple. No loaders, no dynamic routing, no complex frameworks — just clean, readable files.

  • Easy to maintain
  • Easy to add new pages
  • Consistent layout across the entire wiki
  • Fully compatible with the neon‑dark theme
  • Fast loading and lightweight

Adding New Pages

To add a new page, simply:

  1. Create a new .php file in the /pages/ folder
  2. Copy the base structure from an existing page
  3. Update the title and content
  4. Link to it from the overview or navigation