1

For example I can access a twitter resource from the following

http://twitter.github.com/bootstrap/assets/css/bootstrap.css

When I try to access the 'raw' file from my own repository I get

https://raw.github.com/nodeninja/book/master/chapter02/bootstrap/public/stylesheets/docs.css

Which doesn't work correctly in a web page I'm guessing because of https. What's the correct way to do this link?

deltanovember
  • 42,611
  • 64
  • 162
  • 244

1 Answers1

1

GitHub have a pages facility for doing this

http://help.github.com/pages/

This is what I wanted

http://nodeninja.github.com/book/chapter02/docs.css

deltanovember
  • 42,611
  • 64
  • 162
  • 244