A static capsuleer field log hosted on GitHub Pages.
- Push this folder to a GitHub repository
- Go to Settings → Pages and set the source to your main branch, root folder
- Your site will be live at
https://yourusername.github.io/your-repo-name/
Replace PLACEHOLDER_NAME with your pilot's name in:
index.html(line withid="pilot-name"and the<title>)entry.html(line withid="pilot-name"and the<title>)
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:
idmust be unique and higher than the previous entrybodyis an array of strings — each string becomes one paragraphdateshould 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
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
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 8000Then open http://localhost:8000 in your browser.