Commit c5b12fad44237159eca65a7ea5d7948505a3adca

Authored by Saito
1 parent cc836914

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>
... ...