2026-09-17 21:02:46 +00:00
2026-09-17 21:02:46 +00:00
2026-09-17 21:02:46 +00:00
2026-09-17 21:02:46 +00:00
2026-09-17 21:02:46 +00:00
2026-09-17 21:02:46 +00:00
2026-09-17 21:02:46 +00:00
2026-09-17 21:02:46 +00:00
2026-09-17 21:02:46 +00:00
2026-09-17 21:02:46 +00:00
2026-09-17 21:02:46 +00:00
2026-09-17 20:35:52 +00:00
2026-09-17 21:02:46 +00:00
2026-09-16 17:26:24 +00:00
2026-09-16 18:12:06 +00:00
2026-09-16 17:26:24 +00:00
2026-09-16 17:26:24 +00:00
2026-09-17 20:45:09 +00:00

Protospace Website

The Protospace WordPress site has been replaced with static HTML and CSS pages. Static files improve security, reduce maintenance, and provide faster page loads without a database or server-side CMS.

Editing the site

  1. Open the Protospace repository on GitHub and click Fork. Create the fork under your own GitHub account.

  2. Clone your fork and configure the Protospace repository as upstream:

    git clone git@github.com:YOUR-USERNAME/main-website.git
    cd main-website/
    git remote add upstream git@github.com:Protospace/main-website.git
    
  3. Create a branch for your change:

    git checkout -b update-page
    
  4. Edit the HTML pages, styles.css, or files in assets/. Preview the site locally with any static web server, for example:

    python3 -m http.server
    
  5. Commit your changes and push the branch to your fork:

    git add .
    git commit -m "Update page content"
    git push -u origin update-page
    
  6. Go to your fork on GitHub and click Compare & pull request. Set the base repository to Protospace/main-website, choose the appropriate base branch, describe what changed, and submit the pull request.

    Maintainers will review the pull request, request changes if needed, and merge it when it is ready. After your pull request is merged, you can sync your fork before starting another change:

    git checkout main
    git fetch upstream
    git reset --hard upstream/main
    git push origin main --force-with-lease
    

There is no build step. Edit the generated HTML and CSS files directly. Keep the existing responsive layout, local asset paths, accessibility text, metadata, and external Wiki/Portal links intact.

Using a coding agent

A coding agent can be helpful for larger content, layout, accessibility, and consistency changes. Give it a focused task and ask it to inspect the existing files before editing. Follow the repository instructions in AGENTS.md when present, and review the resulting diff before opening a pull request.

S
Description
No description provided
Readme
18 MiB
Languages
HTML 93.2%
CSS 6.8%