This is an unofficial migration prototype for review, structure testing, and content planning. It is not the official Modifyre website.

๐Ÿ”„ Modifyre Website โ€” Complete Guide

How this site works, how to manage content, and how to publish changes.


๐Ÿš€ What is Astro?

Astro is a static site generator. It takes your content files (Markdown or HTML) and builds them into plain HTML pages. The result is a fast, secure website with no database, no server, and no admin login to maintain.

Key things to know:

  • No database โ€” every page is a file on disk
  • No admin panel โ€” you edit files in VS Code or on GitHub
  • Blazing fast โ€” the built site is just HTML, CSS, and images
  • Free hosting โ€” Cloudflare Pages hosts this site for free
  • Git-based โ€” every change is tracked, easy to undo

๐Ÿ“ Content with Markdown (.md) Files

Instead of writing HTML, you write content in Markdown (.md) files. Markdown is a simple way to format text using plain symbols:

Markdown syntax

# Heading 1
## Heading 2

**Bold text** and *italic text*

- List item
- Another item

[Link text](https://example.com)

![Image alt text](/path/to/image.jpg)

What it looks like

Heading 1
Heading 2

Bold text and italic text

  • List item
  • Another item
๐Ÿค– Why Markdown is awesome for AI:
  • AI tools (like ChatGPT, Claude, Copilot) are trained on Markdown โ€” they write it perfectly
  • No risk of breaking HTML tags or layout โ€” the AI only touches the text content
  • Easy to review โ€” Markdown is readable in any text editor or on GitHub
  • Easy to migrate โ€” you can switch between .astro and .md pages one at a time
  • AI can generate entire pages from a short prompt โ€” just describe what you want

Where content lives

Each site has a src/content/pages/ folder. Each .md file becomes one page:

src/content/pages/
  index.md       โ†’  Homepage (/)
  about.md       โ†’  About page (/about)
  event.md       โ†’  Event page (/event)
  contact.md     โ†’  Contact page (/contact)

To add a new page, just create a new .md file in that folder.


๐Ÿ–ผ๏ธ Adding Images, Videos, and Files

Media files go in the public/ folder. They're served as-is at the same path.

public/
  assets/
    images/    โ†’  /assets/images/photo.jpg
    documents/ โ†’  /assets/documents/form.pdf
    video/     โ†’  /assets/video/clip.mp4
    fonts/     โ†’  /assets/fonts/custom.woff2

To use an image in a Markdown page:

![Event photo](/assets/images/event-2026.jpg)

To link a document:

[Download the form](/assets/documents/volunteer-form.pdf)

๐Ÿ“ฆ The Publishing Process

1

Edit a file

Open any .md or .astro file in VS Code and change the text.

2

Save

Just save the file. That's it โ€” no database, no admin panel.

3

Build & deploy

Run the deploy script. It builds the site and uploads it to Cloudflare Pages.

4

Live

Refresh your browser โ€” changes are live at the pages.dev URL.

Available scripts

These scripts are in the _scripts/ folder at the repo root:

๐Ÿ“Œ Note on custom domains:

The sites are live at *.pages.dev URLs. To use your real domain (www.friendly-ai.net, www.froodx.net), you need to attach the custom domain in the Cloudflare Pages dashboard โ€” one-time setup.


๐Ÿ™‹ Volunteer Form

Interested in volunteering at Modifyre? Fill in the form below and we'll get back to you. Your information is sent directly via email โ€” it is not stored in any database.

๐Ÿ”’ Privacy note: This form sends data directly via email using your default mail client. No data is stored on any server. For a more secure option, we recommend using a dedicated form service (like Google Forms or Typeform) for production use.


๐Ÿ“‚ Scraped Site Archives

Two existing event websites have been archived for reference. Their content can be compared, adapted, and migrated into the Modifyre site.

๐Ÿ”ฅ Blazing Swan

Original: blazingswan.com.au

Archive size: ~746 MB

Pages: 258 pages, 1,242 images, 56 documents

Local archive:

my-webs/froodx.net/burner-webs/site-migrations/
  blazing-swan-site-archive/
    scraped/raw/

Browse locally:

Open Archive Index
Rich content ยท Theme camps ยท News ยท Policies ยท Maps

๐Ÿ”„ Modifyre (Original)

Original: modifyre.org

Archive size: ~36 MB

Pages: 14 pages, 24 documents

Local archive:

my-webs/froodx.net/burner-webs/site-migrations/
  modifyre-site-archive/
    scraped/raw/

Assets (copied to prototype):

other-webs/modifyre-astro-prototype/public/assets/
  documents/  fonts/  images/  other/  video/
Smaller archive ยท Blog posts ยท PDF documents

How to use the archives

  1. Browse the scraped sites locally using the archive index link above
  2. Compare content between Blazing Swan and Modifyre โ€” see what works well
  3. Copy text, images, and documents into the Astro prototype
  4. Adapt the content for Modifyre's community and event
  5. Publish using the deploy scripts
๐Ÿ’ก Content harvesting tip:

Blazing Swan has a much richer archive (258 pages, theme camps, news, policies). You can use their structure as a template for Modifyre's content โ€” for example, their theme camp directory, volunteer role descriptions, and survival guide are excellent reference material that can be adapted for Modifyre.


๐ŸŸฅ WordPress โ€” The Easier Alternative

If Astro feels too technical, WordPress is a perfectly valid alternative. It's what Blazing Swan uses, and it's much easier for non-technical teams.

โœ… Astro (This Prototype)

  • Free hosting โ€” Cloudflare Pages, no server costs
  • No database โ€” content is in files
  • Blazing fast โ€” pure HTML, no loading time
  • Git-based โ€” every change tracked
  • AI-friendly โ€” Markdown is perfect for AI tools
  • Requires someone comfortable with files and Git
Free ยท Fast ยท Secure ยท AI-friendly

๐ŸŸฅ WordPress

  • Paid hosting โ€” ~$15-30/month for a basic plan
  • Visual editor โ€” drag and drop, no coding
  • Admin dashboard โ€” edit in your browser
  • Plugins โ€” forms, ticketing, galleries, SEO
  • User management โ€” multiple editors with permissions
  • Familiar โ€” many people already know how to use it
Costs money ยท Slower ยท Security upkeep

๐Ÿ’ก Which should you choose?

Stick with Astro if: You have someone who can edit Markdown files and run the deploy script. It's free, fast, and AI tools can write content for you.

Switch to WordPress if: Multiple non-technical volunteers need to edit content, or you want a visual drag-and-drop editor. The scraped assets from both Modifyre and Blazing Swan can be imported into WordPress easily.

Hybrid option: Use Astro for the public site + a headless CMS (like Decap CMS) for visual editing. This gives you the best of both worlds โ€” free hosting with a browser-based editor.


๐Ÿ“‹ Quick Reference

โš ๏ธ Human review required before any public publishing. This is an unofficial migration prototype. All content should be reviewed by the Modifyre team before going live at the real domain.