diff options
author | Roald de Vries <rdevries@thoughtworks.com> | 2016-12-05 10:39:10 +0100 |
---|---|---|
committer | Roald de Vries <rdevries@thoughtworks.com> | 2016-12-05 10:39:10 +0100 |
commit | ed69fa3b7bf0b543b6c5d3f41504965a1b085808 (patch) | |
tree | 4c5c044069353181557f2c42ab22bbf2f360f827 /service/templates/login.html | |
parent | 391cc55537a97ec8b2b55662db9c63f86ab885ef (diff) |
use static instead of {startup,public}-assets
Diffstat (limited to 'service/templates/login.html')
-rw-r--r-- | service/templates/login.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/service/templates/login.html b/service/templates/login.html index c2f5e78e..c60e9305 100644 --- a/service/templates/login.html +++ b/service/templates/login.html @@ -3,16 +3,16 @@ <head> <title>Pixelated - Login</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - <link rel="icon" type="image/png" href="/startup-assets/favicon.png" /> - <link rel="stylesheet" type="text/css" href="/startup-assets/normalize.min.css" /> - <link rel="stylesheet" type="text/css" href="/startup-assets/pixelated.css" /> - <link rel="stylesheet" type="text/css" href="/startup-assets/opensans.css" /> + <link rel="icon" type="image/png" href="/static/favicon.png" /> + <link rel="stylesheet" type="text/css" href="/static/normalize.min.css" /> + <link rel="stylesheet" type="text/css" href="/static/pixelated.css" /> + <link rel="stylesheet" type="text/css" href="/static/opensans.css" /> </head> <body> <div class="content"> <div class="login"> - <img class="logo" src="/startup-assets/pixelated-logo-orange.svg" alt="Pixelated logo"/> + <img class="logo" src="/static/pixelated-logo-orange.svg" alt="Pixelated logo"/> <p t:render="error_msg" class="error" ></p> |