ut01: Quick Navigation for UT Austin Students

ut01.github.io

UT Austin student portal (Jekyll site). Links live in _data/links.yml; guides are standalone pages in guides/.

Guide Principles

Conventions

Local Preview

Option 1: Simple HTTP Server (limited)

python3 -m http.server 8000
# Visit http://localhost:8000
# Note: Jekyll templating won't work, only static HTML/CSS/JS

Option 2: Jekyll Local Setup

bundle install
bundle exec jekyll serve --port 4000
# Visit http://localhost:4000

Option 3: VS Code Live Server