diff options
author | Saito <saitowu@gmail.com> | 2012-05-21 12:00:24 +0800 |
---|---|---|
committer | Saito <saitowu@gmail.com> | 2012-05-23 11:00:51 +0800 |
commit | c5b12fad44237159eca65a7ea5d7948505a3adca (patch) | |
tree | c33a042ff7b9ebec7579c3689519c996f71c9c60 /public | |
parent | cc8369144db2147d2956e8dd7d314e9a7dfd4fbb (diff) | |
download | gitlab-ce-c5b12fad44237159eca65a7ea5d7948505a3adca.tar.gz |
fix No route matches static.css Error
Diffstat (limited to 'public')
-rw-r--r-- | public/404.html | 2 | ||||
-rw-r--r-- | public/422.html | 2 | ||||
-rw-r--r-- | public/500.html | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/public/404.html b/public/404.html index 33325890b32..d4b26fe439c 100644 --- a/public/404.html +++ b/public/404.html @@ -2,7 +2,7 @@ <html> <head> <title>The page you were looking for doesn't exist (404)</title> - <link href="static.css" media="screen" rel="stylesheet" type="text/css" /> + <link href="/static.css" media="screen" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/public/422.html b/public/422.html index 8b19ea89ce5..a0a0a244105 100644 --- a/public/422.html +++ b/public/422.html @@ -2,7 +2,7 @@ <html> <head> <title>The change you wanted was rejected (422)</title> - <link href="static.css" media="screen" rel="stylesheet" type="text/css" /> + <link href="/static.css" media="screen" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/public/500.html b/public/500.html index 36e14b802ee..2868de5e686 100644 --- a/public/500.html +++ b/public/500.html @@ -2,7 +2,7 @@ <html> <head> <title>We're sorry, but something went wrong (500)</title> - <link href="static.css" media="screen" rel="stylesheet" type="text/css" /> + <link href="/static.css" media="screen" rel="stylesheet" type="text/css" /> </head> <body> |