From cf0badeb7c18fe6129907912585780411de40a63 Mon Sep 17 00:00:00 2001 From: Darren VanBuren Date: Tue, 30 Sep 2014 03:15:52 -0700 Subject: [PATCH] Don't use / so it can be mounted at a path --- stargaterando.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stargaterando.rb b/stargaterando.rb index 16b3644..eb1e984 100644 --- a/stargaterando.rb +++ b/stargaterando.rb @@ -47,7 +47,7 @@ module StargateRando::Views head do title { "Stargate Episode Randomizer" } link :rel => "stylesheet", :href => "http://fonts.googleapis.com/css?family=Ubuntu:400,700", :type => "text/css" - link :rel => "stylesheet", :href => "/main.css", :type => "text/css" + link :rel => "stylesheet", :href => "main.css", :type => "text/css" end body { self << yield }