Skip to content

xdokux/ORE-FIELD-LOG

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

O.R.E. Pilot Log

A static capsuleer field log hosted on GitHub Pages.

Setup

  1. Push this folder to a GitHub repository
  2. Go to Settings → Pages and set the source to your main branch, root folder
  3. Your site will be live at https://yourusername.github.io/your-repo-name/

Personalise

Replace PLACEHOLDER_NAME with your pilot's name in:

  • index.html (line with id="pilot-name" and the <title>)
  • entry.html (line with id="pilot-name" and the <title>)

Adding a new log entry

Open entries.json and add a new object to the array. Copy this template:

{
  "id": 2,
  "date": "YC126.06.28",
  "realDate": "2026-06-28",
  "title": "Your entry title",
  "system": "Josametto",
  "region": "The Forge",
  "sec": "0.6",
  "ship": "Venture-class",
  "tags": ["Tag one", "Tag two"],
  "body": [
    "First paragraph of your log entry.",
    "Second paragraph.",
    "Third paragraph."
  ]
}

Rules:

  • id must be unique and higher than the previous entry
  • body is an array of strings — each string becomes one paragraph
  • date should be in YC format (YC126 = year 2024 in EVE lore, roughly add 2 years to real year)
  • Save the file, then git add . && git commit -m "new entry" && git push

File structure

index.html      ← entry list / home page
entry.html      ← individual entry (loaded via ?id=N)
style.css       ← full ORE theme
entries.json    ← all your log data lives here
README.md       ← this file

Local preview

Because the site fetches entries.json via JavaScript, you need a local server to preview it — opening index.html directly in a browser will block the fetch.

The easiest way:

npx serve .

Or if you have Python:

python -m http.server 8000

Then open http://localhost:8000 in your browser.

About

> Personal operations terminal maintained by a solo capsuleer operating under Outer Ring Excavations charter. Field logs, extraction records, and ship manifests transmitted from deep space. Signal relay: ORE-7-ALPHA. All entries are the private record of an independent pilot. Unauthorized access is prosecuted under interstellar law.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors