Skip to content

Latest commit

 

History

12 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 

Repository files navigation

Standard Structure Pages

Small interactive demos explaining orientation/rotation concepts. Deployed via GitHub Pages.


Run locally (Python)

From the repo root:

python3 -m http.server 8080

Open:

  • Hub: http://localhost:8080/
  • Library Orientation: http://localhost:8080/pages/library-orientation.html

Prefer Node?

npx serve . -l 8080

Then open the same URLs above.


Add a new page

  1. Copy an existing page:
cp pages/library-orientation.html pages/<your-new-page>.html
  1. Edit the new file (title/content/script). Keep the shared stylesheet link near the top:
<link rel="stylesheet" href="../assets/style.css">
  1. Link it from the landing page (index.html):
<!-- Add to the nav -->
<a href="pages/<your-new-page>.html">Your New Page</a>

<!-- Add to the list -->
<li><a href="pages/<your-new-page>.html">Your New Page</a></li>
  1. Commit & push:
git add pages/<your-new-page>.html index.html
git commit -m "feat: add <your-new-page> demo"
git push

Deploy to GitHub Pages

  1. In GitHub: Settings → Pages
  • Source: Deploy from a branch
  • Branch: main and / (root)
  1. Your site URL:
https://neara-software.github.io/StandardStructurePages/

Pages live under /pages/..., e.g.:

https://neara-software.github.io/StandardStructurePages/pages/library-orientation.html

Embedding in Fibery: use the public page URL. Ensure HTTPS. If an embed is blank, the host may block iframes—GitHub Pages is fine.


Repo layout (suggested)

StandardStructurePages/
├─ index.html                # Hub / landing
├─ pages/
│  ├─ library-orientation.html
│  └─ <your-new-page>.html
├─ assets/
│  ├─ style.css             # shared styles
│  └─ app.js                # shared helpers (optional)
└─ README.md

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages