Commit d2a12e02868da64d80e8c8679abac49300b08012

Authored by Dmitriy Zaporozhets
2 parents cc836914 c5b12fad

Merge pull request #849 from SaitoWu/bugfix/css

fix No route matches static.css Error
public/404.html
... ... @@ -2,7 +2,7 @@
2 2 <html>
3 3 <head>
4 4 <title>The page you were looking for doesn't exist (404)</title>
5   - <link href="static.css" media="screen" rel="stylesheet" type="text/css" />
  5 + <link href="/static.css" media="screen" rel="stylesheet" type="text/css" />
6 6 </head>
7 7  
8 8 <body>
... ...
public/422.html
... ... @@ -2,7 +2,7 @@
2 2 <html>
3 3 <head>
4 4 <title>The change you wanted was rejected (422)</title>
5   - <link href="static.css" media="screen" rel="stylesheet" type="text/css" />
  5 + <link href="/static.css" media="screen" rel="stylesheet" type="text/css" />
6 6 </head>
7 7  
8 8 <body>
... ...
public/500.html
... ... @@ -2,7 +2,7 @@
2 2 <html>
3 3 <head>
4 4 <title>We're sorry, but something went wrong (500)</title>
5   - <link href="static.css" media="screen" rel="stylesheet" type="text/css" />
  5 + <link href="/static.css" media="screen" rel="stylesheet" type="text/css" />
6 6 </head>
7 7  
8 8 <body>
... ...