My personal website — a place to collect projects, notes, and physics coursework, served straight from this repository by GitHub Pages.
Live at: https://jsncar.github.io/
Hand-written HTML and CSS, no static-site generator and no build step. Pushing
to main publishes.
| File | Page |
|---|---|
index.html |
Home |
posts.html |
Blog posts |
projects.html |
Projects |
about.html |
About me |
electromagnetism.html |
Notes on electromagnetism |
fisicapensum.html |
Pensum de Física — the physics degree curriculum at Universidad de los Andes |
The first four are linked from the shared navigation bar; the last two are content pages reached from within the site.
python3 -m http.server 8000Then visit http://localhost:8000. Or just open index.html directly in a
browser — there is nothing to compile.
.
├── index.html # Home
├── posts.html # Blog posts
├── projects.html # Projects
├── about.html # About me
├── electromagnetism.html # Physics notes
├── fisicapensum.html # Degree curriculum
└── css/
└── style.css # Shared styles (~164 lines)
Every page pulls in the same css/style.css and repeats the same <header>
navigation block, so adding a page means copying that shell and filling in
<main>.
Work in progress. The layout, navigation, and styling are in place, but several
pages — index.html among them — still have an empty <article> waiting for
content.