A website for the "Terrible Ideas Hackathon" at uWaterloo! 10+ Successful Hackathons and counting!
Current site: https://terriblehack.website/
When creating a new TerribleHack site, move the previous site into its own folder first. <3
Here are some files to not move:
.git
.gitignore
CNAME
README.MD
- Move the old
*.html
files into the previous term's folder (e.g.w20XX
for Winter 20XX) - Create a new folder for this term's website (e.g.
s20XX
for Spring 20xx) - Place your assets (images, CSS, JS) in the new folder (e.g.
s20XX
) - Create your homepage by creating
index.html
in the root folder (where the oldindex.html
was) - Use root-relative URLs, so the links will still work when the webpages are moved in the future
Important: To test your site locally while using root-relative URLs, use localhost:8000
instead of file://...
:
cd terriblehack
python -m SimpleHTTPServer 8000